1
|
<?php
|
2
|
|
3
|
// $Id: details.php 826 2008-04-14 18:42:59Z doc $
|
4
|
|
5
|
/*
|
6
|
|
7
|
Website Baker Project <http://www.websitebaker.org/>
|
8
|
Copyright (C) 2004-2008, Ryan Djurovich
|
9
|
|
10
|
Website Baker is free software; you can redistribute it and/or modify
|
11
|
it under the terms of the GNU General Public License as published by
|
12
|
the Free Software Foundation; either version 2 of the License, or
|
13
|
(at your option) any later version.
|
14
|
|
15
|
Website Baker is distributed in the hope that it will be useful,
|
16
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
17
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
18
|
GNU General Public License for more details.
|
19
|
|
20
|
You should have received a copy of the GNU General Public License
|
21
|
along with Website Baker; if not, write to the Free Software
|
22
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
23
|
|
24
|
*/
|
25
|
|
26
|
// Include the config file
|
27
|
require('../../config.php');
|
28
|
require_once(WB_PATH .'/framework/functions.php');
|
29
|
|
30
|
// Print admin header
|
31
|
require_once(WB_PATH.'/framework/class.admin.php');
|
32
|
$admin = new admin('Addons', 'modules_view');
|
33
|
|
34
|
// Get module name
|
35
|
if(!isset($_POST['file']) OR $_POST['file'] == "") {
|
36
|
header("Location: index.php");
|
37
|
exit(0);
|
38
|
} else {
|
39
|
$file = $admin->add_slashes($_POST['file']);
|
40
|
}
|
41
|
|
42
|
// Check if the module exists
|
43
|
if(!file_exists(WB_PATH.'/modules/'.$file)) {
|
44
|
header("Location: index.php");
|
45
|
exit(0);
|
46
|
}
|
47
|
|
48
|
// Setup module object
|
49
|
$template = new Template(ADMIN_PATH.'/modules');
|
50
|
$template->set_file('page', 'details.html');
|
51
|
$template->set_block('page', 'main_block', 'main');
|
52
|
|
53
|
// Insert values
|
54
|
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'module' AND directory = '$file'");
|
55
|
if($result->numRows() > 0) {
|
56
|
$module = $result->fetchRow();
|
57
|
}
|
58
|
|
59
|
// check if a module description exists for the displayed backend language
|
60
|
$tool_description = false;
|
61
|
if(function_exists('file_get_contents') && file_exists(WB_PATH.'/modules/'.$file.'/languages/'.LANGUAGE .'.php')) {
|
62
|
// read contents of the module language file into string
|
63
|
$data = @file_get_contents(WB_PATH .'/modules/' .$file .'/languages/' .LANGUAGE .'.php');
|
64
|
// use regular expressions to fetch the content of the variable from the string
|
65
|
$tool_description = get_variable_content('module_description', $data, false, false);
|
66
|
// replace optional placeholder {WB_URL} with value stored in config.php
|
67
|
$tool_description = str_replace('{WB_URL}', WB_URL, $tool_description);
|
68
|
}
|
69
|
if($tool_description !== false) {
|
70
|
// Override the module-description with correct desription in users language
|
71
|
$module['description'] = $tool_description;
|
72
|
}
|
73
|
|
74
|
$template->set_var(array(
|
75
|
'NAME' => $module['name'],
|
76
|
'AUTHOR' => $module['author'],
|
77
|
'DESCRIPTION' => $module['description'],
|
78
|
'VERSION' => $module['version'],
|
79
|
'DESIGNED_FOR' => $module['platform']
|
80
|
)
|
81
|
);
|
82
|
|
83
|
switch ($module['function']) {
|
84
|
case NULL:
|
85
|
$type_name = $TEXT['UNKNOWN'];
|
86
|
break;
|
87
|
case 'page':
|
88
|
$type_name = $TEXT['PAGE'];
|
89
|
break;
|
90
|
case 'wysiwyg':
|
91
|
$type_name = $TEXT['WYSIWYG_EDITOR'];
|
92
|
break;
|
93
|
case 'tool':
|
94
|
$type_name = $TEXT['ADMINISTRATION_TOOL'];
|
95
|
break;
|
96
|
case 'admin':
|
97
|
$type_name = $TEXT['ADMIN'];
|
98
|
break;
|
99
|
case 'administration':
|
100
|
$type_name = $TEXT['ADMINISTRATION'];
|
101
|
break;
|
102
|
default:
|
103
|
$type_name = $TEXT['UNKNOWN'];
|
104
|
}
|
105
|
$template->set_var('TYPE', $type_name);
|
106
|
|
107
|
// Insert language headings
|
108
|
$template->set_var(array(
|
109
|
'HEADING_MODULE_DETAILS' => $HEADING['MODULE_DETAILS']
|
110
|
)
|
111
|
);
|
112
|
// Insert language text and messages
|
113
|
$template->set_var(array(
|
114
|
'TEXT_NAME' => $TEXT['NAME'],
|
115
|
'TEXT_TYPE' => $TEXT['TYPE'],
|
116
|
'TEXT_AUTHOR' => $TEXT['AUTHOR'],
|
117
|
'TEXT_VERSION' => $TEXT['VERSION'],
|
118
|
'TEXT_DESIGNED_FOR' => $TEXT['DESIGNED_FOR'],
|
119
|
'TEXT_DESCRIPTION' => $TEXT['DESCRIPTION'],
|
120
|
'TEXT_BACK' => $TEXT['BACK']
|
121
|
)
|
122
|
);
|
123
|
|
124
|
// Parse module object
|
125
|
$template->parse('main', 'main_block', false);
|
126
|
$template->pparse('output', 'page');
|
127
|
|
128
|
// Print admin footer
|
129
|
$admin->print_footer();
|
130
|
|
131
|
?>
|