1
|
<?php
|
2
|
/**
|
3
|
*
|
4
|
* @category admin
|
5
|
* @package admintools
|
6
|
* @author WB-Project, Werner v.d. Decken
|
7
|
* @copyright 2012, WebsiteBaker Org. e.V.
|
8
|
* @link http://www.websitebaker2.org/
|
9
|
* @license http://www.gnu.org/licenses/gpl.html
|
10
|
* @platform WebsiteBaker 2.8.x
|
11
|
* @requirements PHP 5.2.2 and higher
|
12
|
* @version $Id: index.php 1810 2012-11-09 15:55:03Z Luisehahne $
|
13
|
* @filesource $HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/admin/admintools/index.php $
|
14
|
* @lastmodified $Date: 2012-11-09 16:55:03 +0100 (Fri, 09 Nov 2012) $
|
15
|
*
|
16
|
*/
|
17
|
|
18
|
require('../../config.php');
|
19
|
require_once(WB_PATH.'/framework/class.admin.php');
|
20
|
$admin = new admin('admintools', 'admintools');
|
21
|
|
22
|
// Include the WB functions file
|
23
|
require_once(WB_PATH.'/framework/functions.php');
|
24
|
|
25
|
// Setup template object, parse vars to it, then parse it
|
26
|
// Create new template object
|
27
|
$template = new Template(dirname($admin->correct_theme_source('admintools.htt')),'keep');
|
28
|
// $template->debug = true;
|
29
|
$template->set_file('page', 'admintools.htt');
|
30
|
$template->set_block('page', 'main_block', 'main');
|
31
|
|
32
|
// Insert required template variables
|
33
|
$template->set_var('ADMIN_URL', ADMIN_URL);
|
34
|
$template->set_var('THEME_URL', THEME_URL);
|
35
|
$template->set_var('HEADING_ADMINISTRATION_TOOLS', $HEADING['ADMINISTRATION_TOOLS']);
|
36
|
|
37
|
// Insert tools into tool list
|
38
|
$template->set_block('main_block', 'tool_list_block', 'tool_list');
|
39
|
$template->set_var('TOOL_NAME', '');
|
40
|
$template->set_var('tool_list', $TEXT['NONE'].' '.$TEXT['MODULE_PERMISSIONS']);
|
41
|
$template->set_var('TOOL_DIR', '');
|
42
|
$template->set_var('TOOL_DESCRIPTION', '');
|
43
|
$template->set_var('NO_CONTENT', '');
|
44
|
|
45
|
$results = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'module' AND function = 'tool' order by name");
|
46
|
if($results->numRows() > 0) {
|
47
|
while( $tool = $results->fetchRow() ) {
|
48
|
|
49
|
if( $admin->get_permission($tool['directory'],'module' ) )
|
50
|
{
|
51
|
$template->set_var('TOOL_NAME', $tool['name']);
|
52
|
$template->set_var('TOOL_DIR', $tool['directory']);
|
53
|
// /icons/admintools.png
|
54
|
// check if a module description exists for the displayed backend language
|
55
|
$tool_description = false;
|
56
|
if(function_exists('file_get_contents') && file_exists(WB_PATH.'/modules/'.$tool['directory'].'/languages/'.LANGUAGE .'.php')) {
|
57
|
// read contents of the module language file into string
|
58
|
$data = @file_get_contents(WB_PATH .'/modules/' .$tool['directory'] .'/languages/' .LANGUAGE .'.php');
|
59
|
$tool_description = get_variable_content('module_description', $data, true, false);
|
60
|
}
|
61
|
if(file_exists(WB_PATH .'/modules/' .$tool['directory'].'/tool_icon.png'))
|
62
|
{
|
63
|
$template->set_var('TOOL_ICON', WB_URL.'/modules/' .$tool['directory'].'/tool_icon.png');
|
64
|
} else {
|
65
|
$template->set_var('TOOL_ICON', THEME_URL.'/icons/admintools.png');
|
66
|
}
|
67
|
$template->set_var('TOOL_DESCRIPTION', ($tool_description === False)? $tool['description'] :$tool_description);
|
68
|
$template->parse('tool_list', 'tool_list_block', true);
|
69
|
}
|
70
|
}
|
71
|
|
72
|
} else {
|
73
|
$template->set_var('TOOL_LIST', $TEXT['NONE_FOUND']);
|
74
|
}
|
75
|
|
76
|
$template->set_var('TOOL_LIST', '<li> </li>');
|
77
|
// Parse template objects output
|
78
|
$template->parse('main', 'main_block', false);
|
79
|
$template->pparse('output', 'page');
|
80
|
|
81
|
$admin->print_footer();
|