-
Notifications
You must be signed in to change notification settings - Fork 4
/
orphans.php
50 lines (42 loc) · 2.07 KB
/
orphans.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
<?php
require_once("../../global/library.php");
use FormTools\Core;
use FormTools\Modules;
use FormTools\Modules\SystemCheck\General;
use FormTools\Modules\SystemCheck\Orphans;
$module = Modules::initModulePage("admin");
$L = $module->getLangStrings();
$root_url = Core::getRootUrl();
if (isset($_GET["clean"])) {
list($g_success, $g_message) = Orphans::cleanOrphans();
}
$word_testing_uc = mb_strtoupper($L["word_untested"]);
$word_passed_uc = mb_strtoupper($L["word_passed"]);
$word_failed_uc = mb_strtoupper($L["word_failed"]);
$notify_hook_verification_complete_problems = addcslashes($L["notify_hook_verification_complete_problems"], '"');
$page_vars = array();
$page_vars["module_list"] = General::getCompatibleModules("hooks");
$page_vars["head_js"] =<<< EOF
g.messages = [];
g.messages["word_testing_c"] = "{$L["word_testing_c"]}";
g.messages["word_untested"] = "$word_testing_uc";
g.messages["word_passed"] = "$word_passed_uc";
g.messages["word_failed"] = "$word_failed_uc";
g.messages["phrase_missing_table_c"] = "{$L["phrase_missing_table_c"]}";
g.messages["phrase_missing_column_c"] = "{$L["phrase_missing_column_c"]}";
g.messages["phrase_table_looks_good_c"] = "{$L["phrase_table_looks_good_c"]}";
g.messages["phrase_invalid_column_c"] = "{$L["phrase_invalid_column_c"]}";
g.messages["text_tables_test"] = "{$L["text_tables_test"]}";
g.messages["notify_test_complete_problems"] = "{$L["notify_test_complete_problems"]}";
g.messages["notify_test_complete_no_problems"] = "{$L["notify_test_complete_no_problems"]}";
g.messages["validation_no_components_selected"] = "{$L["validation_no_components_selected"]}";
g.messages["notify_hook_verification_complete_problems"] = "$notify_hook_verification_complete_problems";
var loading = new Image();
loading.src = "$root_url/modules/system_check/images/loading.gif";
$(function() {
$("#repair_hooks").live("click", function() {
window.location = "hooks.php?repair=" + sc_ns.hook_verification_failed_module_ids.toString();
});
});
EOF;
$module->displayPage("templates/orphans.tpl", $page_vars);