-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathxoops_version.php
More file actions
151 lines (139 loc) · 4.7 KB
/
xoops_version.php
File metadata and controls
151 lines (139 loc) · 4.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?php
$modversion = [];
global $xoopsConfig;
//---模組基本資訊---//
$modversion['name'] = _MI_TADPLAYER_NAME;
$modversion['version'] = $_SESSION['xoops_version'] >= 20511 ? '4.0.0-Stable' : '4.0';
// $modversion['version'] = 3.67;
$modversion['description'] = _MI_TADPLAYER_DESC;
$modversion['author'] = _MI_TADPLAYER_AUTHOR;
$modversion['credits'] = _MI_TADPLAYER_CREDITS;
$modversion['help'] = 'page=help';
$modversion['license'] = 'GNU GPL 2.0';
$modversion['license_url'] = 'www.gnu.org/licenses/gpl-2.0.html/';
$modversion['image'] = 'images/logo_' . $xoopsConfig['language'] . '.png';
$modversion['dirname'] = basename(__DIR__);
//---模組狀態資訊---//
$modversion['release_date'] = '2024-12-12';
$modversion['module_website_url'] = 'https://tad0616.net/';
$modversion['module_website_name'] = _MI_TAD_WEB;
$modversion['module_status'] = 'release';
$modversion['author_website_url'] = 'https://tad0616.net/';
$modversion['author_website_name'] = _MI_TAD_WEB;
$modversion['min_php'] = 5.4;
$modversion['min_xoops'] = '2.5.10';
//---paypal資訊---//
$modversion['paypal'] = [
'business' => 'tad0616@gmail.com',
'item_name' => 'Donation : ' . _MI_TAD_WEB,
'amount' => 0,
'currency_code' => 'USD',
];
//---資料表架構---//
$modversion['sqlfile']['mysql'] = 'sql/mysql.sql';
$modversion['tables'] = ['tad_player_cate', 'tad_player', 'tad_player_rank'];
//---管理介面設定---//
$modversion['hasAdmin'] = 1;
$modversion['adminindex'] = 'admin/index.php';
$modversion['adminmenu'] = 'admin/menu.php';
//---使用者主選單設定---//
$modversion['hasMain'] = 1;
//---啟動後台管理界面選單---//
$modversion['system_menu'] = 1;
//---安裝設定---//
$modversion['onInstall'] = 'include/onInstall.php';
$modversion['onUpdate'] = 'include/onUpdate.php';
$modversion['onUninstall'] = 'include/onUninstall.php';
//---評論設定---//
$modversion['hasComments'] = 0;
//---搜尋設定---//
$modversion['hasSearch'] = 1;
$modversion['search']['file'] = 'include/search.php';
$modversion['search']['func'] = 'tad_player_search';
//---樣板設定---//
$modversion['templates'] = [
['file' => 'tad_player_admin.tpl', 'description' => 'tad_player_admin.tpl'],
['file' => 'tad_player_index.tpl', 'description' => 'tad_player_index.tpl'],
];
//---區塊設定---//
$modversion['blocks'] = [
1 => [
'file' => 'tad_player.php',
'name' => _MI_TADPLAYER_BNAME1,
'description' => _MI_TADPLAYER_BDESC1,
'show_func' => 'tad_player',
'template' => 'tad_player.tpl',
'edit_func' => 'tad_player_edit',
'options' => '|0|true',
],
[
'file' => 'tad_new_media.php',
'name' => _MI_TADPLAYER_BNAME2,
'description' => _MI_TADPLAYER_BDESC2,
'show_func' => 'tad_new_media',
'template' => 'tad_new_media.tpl',
'edit_func' => 'tad_new_media_edit',
'options' => '10|1',
],
[
'file' => 'tad_hot_media.php',
'name' => _MI_TADPLAYER_BNAME3,
'description' => _MI_TADPLAYER_BDESC3,
'show_func' => 'tad_hot_media',
'template' => 'tad_hot_media.tpl',
'edit_func' => 'tad_tad_hot_media_edit',
'options' => '10|1',
],
[
'file' => 'tad_play_list.php',
'name' => _MI_TADPLAYER_BNAME4,
'description' => _MI_TADPLAYER_BDESC4,
'show_func' => 'tad_player_play_list',
'template' => 'tad_play_list.tpl',
'edit_func' => 'tad_player_play_list_edit',
'options' => '|0|100|true',
],
];
//---模組設定---//
$modversion['config'] = [
[
'name' => 'index_show_num',
'title' => '_MI_TADPLAYER_SHOW_NUM',
'description' => '_MI_TADPLAYER_SHOW_NUM_DESC',
'formtype' => 'textbox',
'valuetype' => 'int',
'default' => '10',
],
[
'name' => 'use_social_tools',
'title' => '_MI_SOCIALTOOLS_TITLE',
'description' => '_MI_SOCIALTOOLS_TITLE_DESC',
'formtype' => 'yesno',
'valuetype' => 'int',
'default' => '1',
],
[
'name' => 'use_star_rating',
'title' => '_MI_STAR_RATING_TITLE',
'description' => '_MI_STAR_RATING_DESC',
'formtype' => 'yesno',
'valuetype' => 'int',
'default' => '1',
],
[
'name' => 'font_color',
'title' => '_MI_TADPLAYER_FONT_COLOR',
'description' => '_MI_TADPLAYER_FONT_COLOR_DESC',
'formtype' => 'textbox',
'valuetype' => 'text',
'default' => '#FFFFFF',
],
[
'name' => 'border_color',
'title' => '_MI_TADPLAYER_BORDER_COLOR',
'description' => '_MI_TADPLAYER_BORDER_COLOR_DESC',
'formtype' => 'textbox',
'valuetype' => 'text',
'default' => '#000000',
],
];