-
Notifications
You must be signed in to change notification settings - Fork 4
/
module_config.php
77 lines (73 loc) · 1.72 KB
/
module_config.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
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
<?php
$STRUCTURE = array();
$STRUCTURE["tables"] = array();
$STRUCTURE["tables"]["module_hooks_manager_rules"] = array(
array(
"Field" => "hook_id",
"Type" => "mediumint(9)",
"Null" => "NO",
"Key" => "PRI",
"Default" => ""
),
array(
"Field" => "is_custom_hook",
"Type" => "enum('yes','no')",
"Null" => "NO",
"Key" => "",
"Default" => "no"
),
array(
"Field" => "status",
"Type" => "enum('enabled','disabled')",
"Null" => "NO",
"Key" => "",
"Default" => "enabled"
),
array(
"Field" => "rule_name",
"Type" => "varchar(255)",
"Null" => "NO",
"Key" => "",
"Default" => ""
),
array(
"Field" => "code",
"Type" => "mediumtext",
"Null" => "NO",
"Key" => "",
"Default" => ""
),
array(
"Field" => "hook_code_type",
"Type" => "enum('na','php','html','smarty')",
"Null" => "NO",
"Key" => "",
"Default" => "na"
)
);
$HOOKS = array();
$FILES = array(
"code/",
"code/index.php",
"code/Module.class.php",
"code/Rules.class.php",
"images/",
"images/icon.gif",
"lang/",
"lang/en_us.php",
"templates/",
"templates/add.tpl",
"templates/edit.tpl",
"templates/help.tpl",
"templates/index.tpl",
"templates/settings.tpl",
"add.php",
"edit.php",
"help.php",
"hooks_manager.js",
"index.php",
"library.php",
"module_config.php",
"settings.php",
"styles.css"
);