-
Notifications
You must be signed in to change notification settings - Fork 5
/
xoops_version.php
46 lines (39 loc) · 1.14 KB
/
xoops_version.php
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
<?php
$modversion = [
'name' => "設備管理",
'version' => '1.00',
'description' => '設備管理',
'author' => 'swt02026',
'image' => 'image/index.jpg',
'dirname' => basename(dirname(__FILE__)),
'system_menu' => 1,
'hasMain' => 1,
'hasAdmin' => 1,
'adminindex' => 'admin/index.php',
'adminmenu' => 'admin/menu.php',
'config' => []
];
$modversion['templates'] = [
[
'file' => 'equipment_manage.html',
'description' => 'equipment_manage.html'
],
[
'file' => 'equipment_borrow_list.html',
'description' => 'equipment_borrow_list.html'
],
[
'file' => 'equipment_borrow.html',
'description' => 'equipment_borrow.html'
],
[
'file' => 'equipment_about.html',
'description' => 'equipment_about.html'
]
];
$modversion['sqlfile']['mysql'] = 'sql/mysql.sql';
$modversion['tables'] = [
"equipment_desc",
"equipment_borrow"
];
?>