1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | PhpWebGallery - a PHP based picture gallery | |
---|
4 | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | |
---|
5 | // | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net | |
---|
6 | // +-----------------------------------------------------------------------+ |
---|
7 | // | branch : BSF (Best So Far) |
---|
8 | // | file : $RCSfile$ |
---|
9 | // | last update : $Date: 2006-02-20 23:47:01 +0000 (Mon, 20 Feb 2006) $ |
---|
10 | // | last modifier : $Author: rub $ |
---|
11 | // | revision : $Revision: 1049 $ |
---|
12 | // +-----------------------------------------------------------------------+ |
---|
13 | // | This program is free software; you can redistribute it and/or modify | |
---|
14 | // | it under the terms of the GNU General Public License as published by | |
---|
15 | // | the Free Software Foundation | |
---|
16 | // | | |
---|
17 | // | This program is distributed in the hope that it will be useful, but | |
---|
18 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
19 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
20 | // | General Public License for more details. | |
---|
21 | // | | |
---|
22 | // | You should have received a copy of the GNU General Public License | |
---|
23 | // | along with this program; if not, write to the Free Software | |
---|
24 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
25 | // | USA. | |
---|
26 | // +-----------------------------------------------------------------------+ |
---|
27 | |
---|
28 | //----------------------------------------------------------- include |
---|
29 | define('PHPWG_ROOT_PATH','./'); |
---|
30 | define('IN_ADMIN', true); |
---|
31 | include_once( PHPWG_ROOT_PATH.'include/common.inc.php' ); |
---|
32 | include_once( PHPWG_ROOT_PATH.'admin/include/isadmin.inc.php' ); |
---|
33 | |
---|
34 | // +-----------------------------------------------------------------------+ |
---|
35 | // | synchronize user informations | |
---|
36 | // +-----------------------------------------------------------------------+ |
---|
37 | |
---|
38 | sync_users(); |
---|
39 | |
---|
40 | // +-----------------------------------------------------------------------+ |
---|
41 | // | variables init | |
---|
42 | // +-----------------------------------------------------------------------+ |
---|
43 | |
---|
44 | if (isset($_GET['page']) |
---|
45 | and preg_match('/^[a-z_]*$/', $_GET['page']) |
---|
46 | and is_file(PHPWG_ROOT_PATH.'admin/'.$_GET['page'].'.php')) |
---|
47 | { |
---|
48 | $page['page'] = $_GET['page']; |
---|
49 | } |
---|
50 | else |
---|
51 | { |
---|
52 | $page['page'] = 'intro'; |
---|
53 | } |
---|
54 | |
---|
55 | $link_start = PHPWG_ROOT_PATH.'admin.php?page='; |
---|
56 | $conf_link = $link_start.'configuration&section='; |
---|
57 | $opt_link = $link_start.'cat_options&section='; |
---|
58 | //----------------------------------------------------- template initialization |
---|
59 | $title = l10n('PhpWebGallery Administration'); // for include/page_header.php |
---|
60 | $page['gallery_title'] = l10n('PhpWebGallery Administration'); |
---|
61 | $page['body_id'] = 'theAdminPage'; |
---|
62 | include(PHPWG_ROOT_PATH.'include/page_header.php'); |
---|
63 | |
---|
64 | $template->set_filenames(array('admin' => 'admin.tpl')); |
---|
65 | |
---|
66 | $template->assign_vars( |
---|
67 | array( |
---|
68 | 'U_SITE_MANAGER'=> $link_start.'site_manager', |
---|
69 | 'U_HISTORY'=> $link_start.'stats', |
---|
70 | 'U_FAQ'=> $link_start.'help', |
---|
71 | 'U_SITES'=> $link_start.'remote_site', |
---|
72 | 'U_MAINTENANCE'=> $link_start.'maintenance', |
---|
73 | 'U_MAILTOUSERS'=> $link_start.'mailtousers', |
---|
74 | 'U_CONFIG_GENERAL'=> $conf_link.'general', |
---|
75 | 'U_CONFIG_COMMENTS'=> $conf_link.'comments', |
---|
76 | 'U_CONFIG_DISPLAY'=> $conf_link.'default', |
---|
77 | 'U_CATEGORIES'=> $link_start.'cat_list', |
---|
78 | 'U_MOVE'=> $link_start.'cat_move', |
---|
79 | 'U_CAT_UPLOAD'=> $opt_link.'upload', |
---|
80 | 'U_CAT_COMMENTS'=> $opt_link.'comments', |
---|
81 | 'U_CAT_VISIBLE'=> $opt_link.'visible', |
---|
82 | 'U_CAT_STATUS'=> $opt_link.'status', |
---|
83 | 'U_CAT_OPTIONS'=> $link_start.'cat_options', |
---|
84 | 'U_CAT_UPDATE'=> $link_start.'update', |
---|
85 | 'U_WAITING'=> $link_start.'waiting', |
---|
86 | 'U_COMMENTS'=> $link_start.'comments', |
---|
87 | 'U_RATING'=> $link_start.'rating', |
---|
88 | 'U_CADDIE'=> $link_start.'element_set&cat=caddie', |
---|
89 | 'U_THUMBNAILS'=> $link_start.'thumbnail', |
---|
90 | 'U_USERS'=> $link_start.'user_list', |
---|
91 | 'U_GROUPS'=> $link_start.'group_list', |
---|
92 | 'U_RETURN'=> PHPWG_ROOT_PATH.'category.php', |
---|
93 | 'U_ADMIN'=> PHPWG_ROOT_PATH.'admin.php', |
---|
94 | 'L_ADMIN' => $lang['admin'], |
---|
95 | 'L_ADMIN_HINT' => $lang['hint_admin'] |
---|
96 | ) |
---|
97 | ); |
---|
98 | |
---|
99 | if ($conf['allow_random_representative']) |
---|
100 | { |
---|
101 | $template->assign_block_vars( |
---|
102 | 'representative', |
---|
103 | array( |
---|
104 | 'URL' => $opt_link.'representative' |
---|
105 | ) |
---|
106 | ); |
---|
107 | } |
---|
108 | |
---|
109 | //------------------------------------------------------------- content display |
---|
110 | $page['errors'] = array(); |
---|
111 | $page['infos'] = array(); |
---|
112 | |
---|
113 | include(PHPWG_ROOT_PATH.'admin/'.$page['page'].'.php'); |
---|
114 | |
---|
115 | // +-----------------------------------------------------------------------+ |
---|
116 | // | errors & infos | |
---|
117 | // +-----------------------------------------------------------------------+ |
---|
118 | |
---|
119 | if (count($page['errors']) != 0) |
---|
120 | { |
---|
121 | $template->assign_block_vars('errors',array()); |
---|
122 | foreach ($page['errors'] as $error) |
---|
123 | { |
---|
124 | $template->assign_block_vars('errors.error',array('ERROR'=>$error)); |
---|
125 | } |
---|
126 | } |
---|
127 | |
---|
128 | if (count($page['infos']) != 0) |
---|
129 | { |
---|
130 | $template->assign_block_vars('infos',array()); |
---|
131 | foreach ($page['infos'] as $info) |
---|
132 | { |
---|
133 | $template->assign_block_vars('infos.info',array('INFO'=>$info)); |
---|
134 | } |
---|
135 | } |
---|
136 | |
---|
137 | $template->parse('admin'); |
---|
138 | include(PHPWG_ROOT_PATH.'include/page_tail.php'); |
---|
139 | |
---|
140 | // +-----------------------------------------------------------------------+ |
---|
141 | // | order permission refreshment | |
---|
142 | // +-----------------------------------------------------------------------+ |
---|
143 | |
---|
144 | $query = ' |
---|
145 | UPDATE '.USER_CACHE_TABLE.' |
---|
146 | SET need_update = \'true\' |
---|
147 | ;'; |
---|
148 | pwg_query($query); |
---|
149 | ?> |
---|