Project

General

Profile

1
<?php
2

    
3
// $Id: index.php 934 2009-02-17 22:37:09Z doc $
4

    
5
/*
6

    
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2009, 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
// Print admin header
27
require('../../config.php');
28
require_once(WB_PATH.'/framework/class.admin.php');
29
$admin = new admin('Addons', 'modules');
30

    
31
// Setup template object
32
$template = new Template(ADMIN_PATH.'/modules');
33
$template->set_file('page', 'template.html');
34
$template->set_block('page', 'main_block', 'main');
35

    
36
// Insert values into module list
37
$template->set_block('main_block', 'module_list_block', 'module_list');
38
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'module' order by name");
39
if($result->numRows() > 0) {
40
	while ($addon = $result->fetchRow()) {
41
		$template->set_var('VALUE', $addon['directory']);
42
		$template->set_var('NAME', $addon['name']);
43
		$template->parse('module_list', 'module_list_block', true);
44
	}
45
}
46

    
47
// Insert modules which includes a install.php file to install list
48
$template->set_block('main_block', 'install_list_block', 'install_list');
49
$module_files = glob(WB_PATH . '/modules/*');
50
foreach ($module_files as $index => $path) {
51
	if (is_dir($path) && file_exists($path . '/install.php')) {
52
		$template->set_var('VALUE', basename($path));
53
		$template->set_var('NAME', basename($path));
54
		$template->parse('install_list', 'install_list_block', true);
55
	} else {
56
		unset($module_files[$index]);
57
	}
58
}
59

    
60
// Insert permissions values
61
if($admin->get_permission('modules_install') != true) {
62
	$template->set_var('DISPLAY_INSTALL', 'hide');
63
}
64
if($admin->get_permission('modules_uninstall') != true) {
65
	$template->set_var('DISPLAY_UNINSTALL', 'hide');
66
}
67
if($admin->get_permission('modules_view') != true) {
68
	$template->set_var('DISPLAY_LIST', 'hide');
69
}
70
// only show if at least one module folder contains a install.php file and permissions to admin section exists
71
if(count($module_files) == 0 || !isset($_GET['advanced']) || $admin->get_permission('admintools') != true) {
72
	$template->set_var('DISPLAY_MANUAL_INSTALL', 'hide');
73
}
74

    
75
// Insert language headings
76
$template->set_var(array(
77
								'HEADING_INSTALL_MODULE' => $HEADING['INSTALL_MODULE'],
78
								'HEADING_UNINSTALL_MODULE' => $HEADING['UNINSTALL_MODULE'],
79
								'HEADING_MODULE_DETAILS' => $HEADING['MODULE_DETAILS'],
80
								'HEADING_MANUAL_MODULE_INSTALLATION' => $HEADING['MANUAL_MODULE_INSTALLATION']
81
								)
82
						);
83
// Insert language text and messages
84
$template->set_var(array(
85
	'URL_TEMPLATES' => $admin->get_permission('templates') ? 
86
		'<a href="' . ADMIN_URL . '/templates/index.php">' . $MENU['TEMPLATES'] . '</a>' : '',
87
	'URL_LANGUAGES' => $admin->get_permission('languages') ? 
88
		'<a href="' . ADMIN_URL . '/languages/index.php">' . $MENU['LANGUAGES'] . '</a>' : '',
89
	'URL_ADVANCED' => $admin->get_permission('admintools') ? 
90
		'<a href="' . ADMIN_URL . '/modules/index.php?advanced">' . $TEXT['ADVANCED'] . '</a>' : '',
91
	'TEXT_INSTALL' => $TEXT['INSTALL'],
92
	'TEXT_UNINSTALL' => $TEXT['UNINSTALL'],
93
	'TEXT_VIEW_DETAILS' => $TEXT['VIEW_DETAILS'],
94
	'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT'],
95
	'TEXT_MANUAL_INSTALLATION' => $MESSAGE['ADDON']['MANUAL_INSTALLATION'],
96
	'TEXT_MANUAL_INSTALLATION_WARNING' => $MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'],
97
	'TEXT_RELOAD' => $TEXT['RELOAD']
98
	)
99
);
100

    
101
// Parse template object
102
$template->parse('main', 'main_block', false);
103
$template->pparse('output', 'page');
104

    
105
// Print admin footer
106
$admin->print_footer();
107

    
108
?>
(3-3/7)