forked from tad0616/tad_form
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxoops_version.php
More file actions
107 lines (96 loc) · 3.24 KB
/
xoops_version.php
File metadata and controls
107 lines (96 loc) · 3.24 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
<?php
$modversion = [];
global $xoopsConfig;
//---模組基本資訊---//
$modversion['name'] = _MI_TAD_FORM_NAME;
// $modversion['version'] = 3.7;
$modversion['version'] = $_SESSION['xoops_version'] >= 20511 ? '4.0.0-Stable' : '4.0';
$modversion['description'] = _MI_TAD_FORM_DESC;
$modversion['author'] = _MI_TAD_FORM_AUTHOR;
$modversion['credits'] = _MI_TAD_FORM_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_form_col',
'tad_form_fill',
'tad_form_main',
'tad_form_value',
'tad_form_data_center',
'tad_form_files_center',
];
//---資料表架構---//
$modversion['system_menu'] = 1;
//---管理介面設定---//
$modversion['hasAdmin'] = 1;
$modversion['adminindex'] = 'admin/index.php';
$modversion['adminmenu'] = 'admin/menu.php';
//---使用者主選單設定---//
$modversion['hasMain'] = 1;
//---安裝設定---//
$modversion['onInstall'] = 'include/onInstall.php';
$modversion['onUpdate'] = 'include/onUpdate.php';
$modversion['onUninstall'] = 'include/onUninstall.php';
//---樣板設定---//
$modversion['templates'] = [
['file' => 'tad_form_index.tpl', 'description' => 'tad_form_index.tpl'],
['file' => 'tad_form_admin.tpl', 'description' => 'tad_form_admin.tpl'],
];
//---區塊設定 (索引為固定值,若欲刪除區塊記得補上索引,避免區塊重複)---//
$modversion['blocks'] = [
1 => [
'file' => 'tad_form.php',
'name' => _MI_TAD_FORM_BNAME1,
'description' => _MI_TAD_FORM_BDESC1,
'show_func' => 'tad_form',
'template' => 'tad_form.tpl',
],
2 => [
'file' => 'tad_one_form.php',
'name' => _MI_TAD_FORM_BNAME2,
'description' => _MI_TAD_FORM_BDESC2,
'show_func' => 'tad_one_form',
'template' => 'tad_one_form.tpl',
'edit_func' => 'tad_one_form_edit',
'options' => '|1',
],
];
//---偏好設定---//
$modversion['config'] = [
[
'name' => 'show_amount',
'title' => '_MI_TAD_FORM_SHOW_AMOUNT',
'description' => '_MI_TAD_FORM_SHOW_AMOUNT_DESC',
'formtype' => 'yesno',
'valuetype' => 'int',
'default' => 1,
],
[
'name' => 'can_send_mail',
'title' => '_MI_TAD_FORM_CAN_SEND_MAIL',
'description' => '_MI_TAD_FORM_CAN_SEND_MAIL_DESC',
'formtype' => 'yesno',
'valuetype' => 'int',
'default' => 1,
],
];