1 |
4
|
ryan
|
<?php
|
2 |
1400
|
FrankH
|
/**
|
3 |
|
|
*
|
4 |
|
|
* @category admin
|
5 |
|
|
* @package admintools
|
6 |
1818
|
Luisehahne
|
* @author Ryan Djurovich (2004-2009), WebsiteBaker Project
|
7 |
|
|
* @copyright 2009-2012, WebsiteBaker Org. e.V.
|
8 |
1400
|
FrankH
|
* @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$
|
13 |
1818
|
Luisehahne
|
* @filesource $HeadURL$
|
14 |
|
|
* @lastmodified $Date$
|
15 |
1400
|
FrankH
|
*
|
16 |
|
|
*/
|
17 |
4
|
ryan
|
|
18 |
|
|
// Print admin header
|
19 |
1818
|
Luisehahne
|
if(!defined('WB_URL'))
|
20 |
|
|
{
|
21 |
|
|
$config_file = realpath('../../config.php');
|
22 |
|
|
if(file_exists($config_file) && !defined('WB_URL'))
|
23 |
|
|
{
|
24 |
|
|
require($config_file);
|
25 |
|
|
}
|
26 |
|
|
}
|
27 |
|
|
if(!class_exists('admin', false)){ include(WB_PATH.'/framework/class.admin.php'); }
|
28 |
|
|
|
29 |
4
|
ryan
|
$admin = new admin('Media', 'media');
|
30 |
1457
|
Luisehahne
|
|
31 |
|
|
$starttime = explode(" ", microtime());
|
32 |
|
|
$starttime = $starttime[0]+$starttime[1];
|
33 |
1035
|
Ruebenwurz
|
include ('parameters.php');
|
34 |
4
|
ryan
|
|
35 |
1529
|
Luisehahne
|
// Setup template object, parse vars to it, then parse it
|
36 |
|
|
// Create new template object
|
37 |
1625
|
Luisehahne
|
$template = new Template(dirname($admin->correct_theme_source('media.htt')));
|
38 |
944
|
Ruebenwurz
|
$template->set_file('page', 'media.htt');
|
39 |
4
|
ryan
|
$template->set_block('page', 'main_block', 'main');
|
40 |
|
|
|
41 |
|
|
// Include the WB functions file
|
42 |
1824
|
Luisehahne
|
if(!function_exists('directory_list')) { require(WB_PATH.'/framework/functions.php'); }
|
43 |
4
|
ryan
|
|
44 |
1819
|
Luisehahne
|
// Target location
|
45 |
|
|
$requestMethod = '_'.strtoupper($_SERVER['REQUEST_METHOD']);
|
46 |
|
|
$directory = (isset(${$requestMethod}['dir'])) ? ${$requestMethod}['dir'] : '';
|
47 |
|
|
|
48 |
|
|
$directory = ($directory == '/') ? '' : $directory;
|
49 |
|
|
$dirlink = 'index.php?dir='.$directory;
|
50 |
|
|
$rootlink = 'index.php?dir=';
|
51 |
|
|
|
52 |
4
|
ryan
|
// Get home folder not to show
|
53 |
1824
|
Luisehahne
|
$home_folders = (defined('HOME_FOLDERS') && HOME_FOLDERS) ? get_home_folders() : array();
|
54 |
4
|
ryan
|
|
55 |
|
|
// Insert values
|
56 |
|
|
$template->set_block('main_block', 'dir_list_block', 'dir_list');
|
57 |
1035
|
Ruebenwurz
|
$dirs = directory_list(WB_PATH.MEDIA_DIRECTORY);
|
58 |
1824
|
Luisehahne
|
$currentHome = (defined('HOME_FOLDERS') && HOME_FOLDERS) ? $admin->get_home_folder() : '';
|
59 |
1818
|
Luisehahne
|
if ($currentHome!=''){
|
60 |
1087
|
Ruebenwurz
|
$dirs = directory_list(WB_PATH.MEDIA_DIRECTORY.$currentHome);
|
61 |
|
|
}
|
62 |
|
|
else
|
63 |
|
|
{
|
64 |
|
|
$dirs = directory_list(WB_PATH.MEDIA_DIRECTORY);
|
65 |
|
|
}
|
66 |
1818
|
Luisehahne
|
|
67 |
1035
|
Ruebenwurz
|
$array_lowercase = array_map('strtolower', $dirs);
|
68 |
|
|
array_multisort($array_lowercase, SORT_ASC, SORT_STRING, $dirs);
|
69 |
|
|
foreach($dirs AS $name) {
|
70 |
1818
|
Luisehahne
|
|
71 |
|
|
if(!isset($home_folders[str_replace(WB_PATH.MEDIA_DIRECTORY, '', $name)]) || $currentHome =='' )
|
72 |
|
|
{
|
73 |
4
|
ryan
|
$template->set_var('NAME', str_replace(WB_PATH, '', $name));
|
74 |
|
|
$template->parse('dir_list', 'dir_list_block', true);
|
75 |
|
|
}
|
76 |
|
|
}
|
77 |
|
|
|
78 |
|
|
// Insert permissions values
|
79 |
|
|
if($admin->get_permission('media_create') != true) {
|
80 |
|
|
$template->set_var('DISPLAY_CREATE', 'hide');
|
81 |
|
|
}
|
82 |
|
|
if($admin->get_permission('media_upload') != true) {
|
83 |
|
|
$template->set_var('DISPLAY_UPLOAD', 'hide');
|
84 |
|
|
}
|
85 |
1818
|
Luisehahne
|
if ($_SESSION['GROUP_ID'] != 1 && (isset($pathsettings['global']['admin_only']) && $pathsettings['global']['admin_only'])) {
|
86 |
|
|
// Only show admin the settings link
|
87 |
1035
|
Ruebenwurz
|
$template->set_var('DISPLAY_SETTINGS', 'hide');
|
88 |
|
|
}
|
89 |
1087
|
Ruebenwurz
|
// Workout if the up arrow should be shown
|
90 |
|
|
if(($dirs == '') or ($dirs==$currentHome) or (!array_key_exists('dir', $_GET))) {
|
91 |
|
|
$display_up_arrow = 'hide';
|
92 |
|
|
} else {
|
93 |
|
|
$display_up_arrow = '';
|
94 |
|
|
}
|
95 |
4
|
ryan
|
|
96 |
|
|
// Insert language headings
|
97 |
|
|
$template->set_var(array(
|
98 |
1457
|
Luisehahne
|
'HEADING_BROWSE_MEDIA' => $HEADING['BROWSE_MEDIA'],
|
99 |
|
|
'HOME_DIRECTORY' => $currentHome,
|
100 |
1819
|
Luisehahne
|
// 'HOME_DIRECTORY' => ( $currentHome!='') ? $currentHome : $directory,
|
101 |
1457
|
Luisehahne
|
'DISPLAY_UP_ARROW' => $display_up_arrow, // **!
|
102 |
|
|
'HEADING_CREATE_FOLDER' => $HEADING['CREATE_FOLDER'],
|
103 |
|
|
'HEADING_UPLOAD_FILES' => $HEADING['UPLOAD_FILES']
|
104 |
|
|
)
|
105 |
|
|
);
|
106 |
1112
|
Ruebenwurz
|
// insert urls
|
107 |
|
|
$template->set_var(array(
|
108 |
1457
|
Luisehahne
|
'ADMIN_URL' => ADMIN_URL,
|
109 |
|
|
'WB_URL' => WB_URL,
|
110 |
|
|
'WB_PATH' => WB_PATH,
|
111 |
|
|
'THEME_URL' => THEME_URL
|
112 |
|
|
)
|
113 |
|
|
);
|
114 |
4
|
ryan
|
// Insert language text and messages
|
115 |
|
|
$template->set_var(array(
|
116 |
1457
|
Luisehahne
|
'MEDIA_DIRECTORY' => MEDIA_DIRECTORY,
|
117 |
1818
|
Luisehahne
|
// 'MEDIA_DIRECTORY' => ($currentHome!='') ? MEDIA_DIRECTORY : $currentHome,
|
118 |
1457
|
Luisehahne
|
'TEXT_NAME' => $TEXT['TITLE'],
|
119 |
|
|
'TEXT_RELOAD' => $TEXT['RELOAD'],
|
120 |
|
|
'TEXT_TARGET_FOLDER' => $TEXT['TARGET_FOLDER'],
|
121 |
|
|
'TEXT_OVERWRITE_EXISTING' => $TEXT['OVERWRITE_EXISTING'],
|
122 |
|
|
'TEXT_FILES' => $TEXT['FILES'],
|
123 |
|
|
'TEXT_CREATE_FOLDER' => $TEXT['CREATE_FOLDER'],
|
124 |
|
|
'TEXT_UPLOAD_FILES' => $TEXT['UPLOAD_FILES'],
|
125 |
|
|
'CHANGE_SETTINGS' => $TEXT['MODIFY_SETTINGS'],
|
126 |
|
|
'OPTIONS' => $TEXT['OPTION'],
|
127 |
|
|
'TEXT_UNZIP_FILE' => $TEXT['UNZIP_FILE'],
|
128 |
|
|
'TEXT_DELETE_ZIP' => $TEXT['DELETE_ZIP'],
|
129 |
|
|
'FTAN' => $admin->getFTAN()
|
130 |
|
|
)
|
131 |
|
|
);
|
132 |
4
|
ryan
|
|
133 |
|
|
// Parse template object
|
134 |
|
|
$template->parse('main', 'main_block', false);
|
135 |
|
|
$template->pparse('output', 'page');
|
136 |
1540
|
Luisehahne
|
/*
|
137 |
1457
|
Luisehahne
|
$endtime=explode(" ", microtime());
|
138 |
|
|
$endtime=$endtime[0]+$endtime[1];
|
139 |
|
|
$debugVMsg = '';
|
140 |
|
|
if($admin->ami_group_member('1') ) {
|
141 |
|
|
$debugVMsg = "<p>Mask loaded in ".round($endtime - $starttime,6)." Sec, ";
|
142 |
|
|
$debugVMsg .= "Memory in use ".number_format(memory_get_usage(true), 0, ',', '.')." Byte, ";
|
143 |
|
|
$debugVMsg .= sizeof(get_included_files())." included files</p>";
|
144 |
|
|
// $debugVMsg = print_message($debugVMsg,'#','debug',-1,false);
|
145 |
|
|
print $debugVMsg.'<br />';
|
146 |
|
|
}
|
147 |
1540
|
Luisehahne
|
*/
|
148 |
1457
|
Luisehahne
|
// Print admin
|
149 |
4
|
ryan
|
$admin->print_footer();
|