Skip to content
This repository has been archived by the owner on Sep 28, 2023. It is now read-only.

Commit

Permalink
Module video clip 4.1.01
Browse files Browse the repository at this point in the history
  • Loading branch information
hoaquynhtim99 committed Feb 12, 2017
1 parent d583f1a commit e275d31
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 3 deletions.
43 changes: 43 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,46 @@ Module Video Clips cho NukeViet, Module đơn giản, hỗ trợ tốt cho SEO.

----------------
Đối với phiên bản 4.0.28 để có giao diện đẹp nhất cần vào cấu hình ảnh thumbnail chọn đường dẫn uploads/video-clip là resize và crop ảnh theo kích thước 300x168 (có thể chọn kích thước nhỏ hơn hoặc lớn hơn miễn sao hợp tỉ lệ 16:9). Chú ý: Giá trị này không áp dụng cho những ảnh đã có trước đó, để tạo lại toàn bộ ảnh cần xóa đi thư mục assets/video-clip sau đó vào phần quản lý file ấn nút refresh cho từng thư mục upload của module video-clip

## Changelogs

### V4.1.01:
- Cập nhật jwplayer 7.8.7.
- Sửa lỗi Youtube Flash API down.
- Thêm cấu hình skin của player.
- Thêm cấu hình dùng ảnh đại diện làm ảnh cover của video cho từng video.
- Bổ sung chức năng lấy menu của module cho module menu.

### V4.0.29:
- Sửa sitemap.
- Sửa lỗi phân quyền xem video bản mobile.

### V4.0.28:
- Tối ưu dữ liệu
- Chạy trên NukeViet 4 RC 1,2,3 (4.0.24 - 2.0.28)
- Full resposive giao diện desktop

### V3.4.07:
- Thêm giao diện mobile.
- Thêm block global.box_video.php hiển thị video như một chuyên mục của trang tin.
- Sửa lỗi giao diện desktop.

### V3.4.06:
- Thêm chức năng cấu hình số ký tự tiêu đề trên trang chủ
- Thêm chức năng cấu hình bật/tắt cấu trúc thư mục upload ảnh theo Năm_Tháng.
- Thêm nội dung chi tiết (Trình soạn thảo trong thông tin video)

Hướng dẫn cập nhật lên từ V3.4.05: Ghi đè code sau đó vào cấu hình => Lưu lại

### V 3.4.05:
- Nâng cấp lên jwplayer 6.8.
- Hỗ trợ phát video trên các thiết bị di động.

### V 3.4.04:
- Nâng cấp giao diện admin.
- Thêm tính năng quản lý chuyên mục đa cấp.
- Hỗ trợ Open Graph.

### V 3.4.03:
- Thêm block global.new_image_video.php.
- Sửa lỗi xác định đường dẫn ảnh trong phần danh sách các video admin.
2 changes: 1 addition & 1 deletion config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
id="79"
type="module"
name="video-clip"
version="4.1.00"
version="4.1.01"

[author]
name="PHAN TAN DUNG"
Expand Down
3 changes: 2 additions & 1 deletion modules/video-clip/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ function nv_list_topics()
'parentid' => (int)$row['parentid'],
'img' => $row['img'],
'subcats' => array(),
'keywords' => $row['keywords']);
'keywords' => $row['keywords']
);
}

$list2 = array();
Expand Down
25 changes: 25 additions & 0 deletions modules/video-clip/menu.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

/**
* @Project VIDEO CLIPS AJAX 4.x
* @Author PHAN TAN DUNG (phantandung92@gmail.com)
* @Copyright (C) 2014 PHAN TAN DUNG. All rights reserved
* @License GNU/GPL version 2 or any later version
* @Createdate Dec 01, 2014, 04:33:14 AM
*/

if (!defined('NV_IS_FILE_ADMIN')) {
die('Stop!!!');
}

$sql = 'SELECT * FROM ' . NV_PREFIXLANG . '_' . $mod_data . '_topic ORDER BY weight ASC';
$result = $db->query($sql);
while ($row = $result->fetch()) {
$array_item[$row['id']] = array(
'parentid' => $row['parentid'],
'groups_view' => '6',
'key' => $row['id'],
'title' => $row['title'],
'alias' => $row['alias']
);
}
2 changes: 1 addition & 1 deletion modules/video-clip/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"submenu" => "main",
"is_sysmod" => 0,
"virtual" => 1,
"version" => "4.1.00",
"version" => "4.1.01",
"date" => "Sun, 12 Feb 2017 22:02:42 GMT",
"author" => "PHAN TAN DUNG (phantandung92@gmail.com)",
"uploads_dir" => array($module_name),
Expand Down

0 comments on commit e275d31

Please sign in to comment.