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-01-15 13:49:29 +0000 (Sun, 15 Jan 2006) $ |
---|
10 | // | last modifier : $Author: nikrou $ |
---|
11 | // | revision : $Revision: 1005 $ |
---|
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 | if (!defined('PHPWG_ROOT_PATH')) |
---|
29 | { |
---|
30 | die('Hacking attempt!'); |
---|
31 | } |
---|
32 | include_once(PHPWG_ROOT_PATH.'admin/include/isadmin.inc.php'); |
---|
33 | |
---|
34 | // +-----------------------------------------------------------------------+ |
---|
35 | // | functions | |
---|
36 | // +-----------------------------------------------------------------------+ |
---|
37 | |
---|
38 | /** |
---|
39 | * save the rank depending on given categories order |
---|
40 | * |
---|
41 | * The list of ordered categories id is supposed to be in the same parent |
---|
42 | * category |
---|
43 | * |
---|
44 | * @param array categories |
---|
45 | * @return void |
---|
46 | */ |
---|
47 | function save_categories_order($categories) |
---|
48 | { |
---|
49 | $current_rank = 0; |
---|
50 | $datas = array(); |
---|
51 | foreach ($categories as $id) |
---|
52 | { |
---|
53 | array_push($datas, array('id' => $id, 'rank' => ++$current_rank)); |
---|
54 | } |
---|
55 | $fields = array('primary' => array('id'), 'update' => array('rank')); |
---|
56 | mass_updates(CATEGORIES_TABLE, $fields, $datas); |
---|
57 | |
---|
58 | update_global_rank(@$_GET['parent_id']); |
---|
59 | } |
---|
60 | |
---|
61 | // +-----------------------------------------------------------------------+ |
---|
62 | // | initialization | |
---|
63 | // +-----------------------------------------------------------------------+ |
---|
64 | |
---|
65 | $categories = array(); |
---|
66 | |
---|
67 | $base_url = PHPWG_ROOT_PATH.'admin.php?page=cat_list'; |
---|
68 | $navigation = '<a class="" href="'.add_session_id($base_url).'">'; |
---|
69 | $navigation.= $lang['home']; |
---|
70 | $navigation.= '</a>'; |
---|
71 | |
---|
72 | // +-----------------------------------------------------------------------+ |
---|
73 | // | virtual categories management | |
---|
74 | // +-----------------------------------------------------------------------+ |
---|
75 | // request to delete a virtual category |
---|
76 | if (isset($_GET['delete']) and is_numeric($_GET['delete'])) |
---|
77 | { |
---|
78 | delete_categories(array($_GET['delete'])); |
---|
79 | array_push($page['infos'], $lang['cat_virtual_deleted']); |
---|
80 | ordering(); |
---|
81 | update_global_rank(); |
---|
82 | } |
---|
83 | // request to add a virtual category |
---|
84 | else if (isset($_POST['submitAdd'])) |
---|
85 | { |
---|
86 | // is the given category name only containing blank spaces ? |
---|
87 | if (preg_match('/^\s*$/', $_POST['virtual_name'])) |
---|
88 | { |
---|
89 | array_push($page['errors'], $lang['cat_error_name']); |
---|
90 | } |
---|
91 | |
---|
92 | if (!count($page['errors'])) |
---|
93 | { |
---|
94 | $parent_id = !empty($_GET['parent_id'])?$_GET['parent_id']:'NULL'; |
---|
95 | |
---|
96 | if ($parent_id != 'NULL') |
---|
97 | { |
---|
98 | $query = ' |
---|
99 | SELECT id,uppercats,global_rank,visible,status |
---|
100 | FROM '.CATEGORIES_TABLE.' |
---|
101 | WHERE id = '.$parent_id.' |
---|
102 | ;'; |
---|
103 | $row = mysql_fetch_array(pwg_query($query)); |
---|
104 | $parent = array('id' => $row['id'], |
---|
105 | 'uppercats' => $row['uppercats'], |
---|
106 | 'visible' => $row['visible'], |
---|
107 | 'status' => $row['status'], |
---|
108 | 'global_rank' => $row['global_rank']); |
---|
109 | } |
---|
110 | |
---|
111 | // what will be the inserted id ? |
---|
112 | $query = ' |
---|
113 | SELECT IF(MAX(id)+1 IS NULL, 1, MAX(id)+1) |
---|
114 | FROM '.CATEGORIES_TABLE.' |
---|
115 | ;'; |
---|
116 | list($next_id) = mysql_fetch_array(pwg_query($query)); |
---|
117 | |
---|
118 | $insert = array(); |
---|
119 | $insert{'id'} = $next_id++; |
---|
120 | $insert{'name'} = $_POST['virtual_name']; |
---|
121 | $insert{'rank'} = $_POST['rank']; |
---|
122 | $insert{'commentable'} = $conf['newcat_default_commentable']; |
---|
123 | |
---|
124 | // a virtual category can't be uploadable |
---|
125 | $insert{'uploadable'} = 'false'; |
---|
126 | |
---|
127 | if (isset($parent)) |
---|
128 | { |
---|
129 | $insert{'id_uppercat'} = $parent{'id'}; |
---|
130 | $insert{'uppercats'} = $parent{'uppercats'}.','.$insert{'id'}; |
---|
131 | $insert{'global_rank'} = $parent{'global_rank'}.'.'.$insert{'rank'}; |
---|
132 | // at creation, must a category be visible or not ? Warning : if |
---|
133 | // the parent category is invisible, the category is automatically |
---|
134 | // create invisible. (invisible = locked) |
---|
135 | if ('false' == $parent['visible']) |
---|
136 | { |
---|
137 | $insert{'visible'} = 'false'; |
---|
138 | } |
---|
139 | else |
---|
140 | { |
---|
141 | $insert{'visible'} = $conf['newcat_default_visible']; |
---|
142 | } |
---|
143 | // at creation, must a category be public or private ? Warning : |
---|
144 | // if the parent category is private, the category is |
---|
145 | // automatically create private. |
---|
146 | if ('private' == $parent['status']) |
---|
147 | { |
---|
148 | $insert{'status'} = 'private'; |
---|
149 | } |
---|
150 | else |
---|
151 | { |
---|
152 | $insert{'status'} = $conf['newcat_default_status']; |
---|
153 | } |
---|
154 | } |
---|
155 | else |
---|
156 | { |
---|
157 | $insert{'visible'} = $conf['newcat_default_visible']; |
---|
158 | $insert{'status'} = $conf['newcat_default_status']; |
---|
159 | $insert{'uppercats'} = $insert{'id'}; |
---|
160 | $insert{'global_rank'} = $insert{'rank'}; |
---|
161 | } |
---|
162 | |
---|
163 | $inserts = array($insert); |
---|
164 | |
---|
165 | // we have then to add the virtual category |
---|
166 | $dbfields = array('id','site_id','name','id_uppercat','rank', |
---|
167 | 'commentable','uploadable','visible','status', |
---|
168 | 'uppercats','global_rank'); |
---|
169 | mass_inserts(CATEGORIES_TABLE, $dbfields, $inserts); |
---|
170 | |
---|
171 | array_push($page['infos'], $lang['cat_virtual_added']); |
---|
172 | } |
---|
173 | } |
---|
174 | else if (isset($_POST['submitOrder'])) |
---|
175 | { |
---|
176 | asort($_POST['catOrd'], SORT_NUMERIC); |
---|
177 | save_categories_order(array_keys($_POST['catOrd'])); |
---|
178 | } |
---|
179 | // +-----------------------------------------------------------------------+ |
---|
180 | // | Cache management | |
---|
181 | // +-----------------------------------------------------------------------+ |
---|
182 | $query = ' |
---|
183 | SELECT * |
---|
184 | FROM '.CATEGORIES_TABLE; |
---|
185 | if (!isset($_GET['parent_id'])) |
---|
186 | { |
---|
187 | $query.= ' |
---|
188 | WHERE id_uppercat IS NULL'; |
---|
189 | } |
---|
190 | else |
---|
191 | { |
---|
192 | $query.= ' |
---|
193 | WHERE id_uppercat = '.$_GET['parent_id']; |
---|
194 | } |
---|
195 | $query.= ' |
---|
196 | ORDER BY rank ASC |
---|
197 | ;'; |
---|
198 | $result = pwg_query($query); |
---|
199 | while ($row = mysql_fetch_assoc($result)) |
---|
200 | { |
---|
201 | $categories[$row['rank']] = $row; |
---|
202 | $categories[$row['rank']]['nb_subcats'] = 0; |
---|
203 | } |
---|
204 | |
---|
205 | // +-----------------------------------------------------------------------+ |
---|
206 | // | Navigation path | |
---|
207 | // +-----------------------------------------------------------------------+ |
---|
208 | |
---|
209 | if (isset($_GET['parent_id'])) |
---|
210 | { |
---|
211 | $navigation.= $conf['level_separator']; |
---|
212 | |
---|
213 | $current_category = get_cat_info($_GET['parent_id']); |
---|
214 | $navigation.= get_cat_display_name($current_category['name'], |
---|
215 | $base_url.'&parent_id=', |
---|
216 | false); |
---|
217 | } |
---|
218 | // +-----------------------------------------------------------------------+ |
---|
219 | // | template initialization | |
---|
220 | // +-----------------------------------------------------------------------+ |
---|
221 | $template->set_filenames(array('categories'=>'admin/cat_list.tpl')); |
---|
222 | |
---|
223 | $form_action = PHPWG_ROOT_PATH.'admin.php?page=cat_list'; |
---|
224 | if (isset($_GET['parent_id'])) |
---|
225 | { |
---|
226 | $form_action.= '&parent_id='.$_GET['parent_id']; |
---|
227 | } |
---|
228 | |
---|
229 | if (count($categories) > 0) |
---|
230 | { |
---|
231 | $next_rank = max(array_keys($categories)) + 1; |
---|
232 | } |
---|
233 | else |
---|
234 | { |
---|
235 | $next_rank = 1; |
---|
236 | } |
---|
237 | |
---|
238 | $template->assign_vars(array( |
---|
239 | 'CATEGORIES_NAV'=>$navigation, |
---|
240 | 'NEXT_RANK'=>$next_rank, |
---|
241 | 'F_ACTION'=>add_session_id($form_action), |
---|
242 | |
---|
243 | 'L_ADD_VIRTUAL'=>$lang['cat_add'], |
---|
244 | 'L_SUBMIT'=>$lang['submit'], |
---|
245 | 'L_STORAGE'=>$lang['storage'], |
---|
246 | 'L_NB_IMG'=>$lang['pictures'], |
---|
247 | 'L_MOVE_UP'=>$lang['up'], |
---|
248 | 'L_EDIT'=>$lang['edit'], |
---|
249 | 'L_DELETE'=>$lang['delete'], |
---|
250 | )); |
---|
251 | |
---|
252 | $tpl = array('cat_first','cat_last'); |
---|
253 | // +-----------------------------------------------------------------------+ |
---|
254 | // | Categories display | |
---|
255 | // +-----------------------------------------------------------------------+ |
---|
256 | |
---|
257 | $categories = array(); |
---|
258 | |
---|
259 | $query = ' |
---|
260 | SELECT id, name, dir, rank, nb_images, status |
---|
261 | FROM '.CATEGORIES_TABLE; |
---|
262 | if (!isset($_GET['parent_id'])) |
---|
263 | { |
---|
264 | $query.= ' |
---|
265 | WHERE id_uppercat IS NULL'; |
---|
266 | } |
---|
267 | else |
---|
268 | { |
---|
269 | $query.= ' |
---|
270 | WHERE id_uppercat = '.$_GET['parent_id']; |
---|
271 | } |
---|
272 | $query.= ' |
---|
273 | ORDER BY rank ASC |
---|
274 | ;'; |
---|
275 | $result = pwg_query($query); |
---|
276 | while ($row = mysql_fetch_array($result)) |
---|
277 | { |
---|
278 | $categories[$row['id']] = $row; |
---|
279 | // by default, let's consider there is no sub-categories. This will be |
---|
280 | // calculated after. |
---|
281 | $categories[$row['id']]['nb_subcats'] = 0; |
---|
282 | } |
---|
283 | |
---|
284 | if (count($categories) > 0) |
---|
285 | { |
---|
286 | $query = ' |
---|
287 | SELECT id_uppercat, COUNT(*) AS nb_subcats |
---|
288 | FROM '. CATEGORIES_TABLE.' |
---|
289 | WHERE id_uppercat IN ('.implode(',', array_keys($categories)).') |
---|
290 | GROUP BY id_uppercat |
---|
291 | ;'; |
---|
292 | $result = pwg_query($query); |
---|
293 | while ($row = mysql_fetch_array($result)) |
---|
294 | { |
---|
295 | $categories[$row['id_uppercat']]['nb_subcats'] = $row['nb_subcats']; |
---|
296 | } |
---|
297 | } |
---|
298 | |
---|
299 | foreach ($categories as $category) |
---|
300 | { |
---|
301 | $images_folder = PHPWG_ROOT_PATH.'template/'; |
---|
302 | $images_folder.= $user['template'].'/admin/images'; |
---|
303 | |
---|
304 | $base_url = PHPWG_ROOT_PATH.'admin.php?page='; |
---|
305 | $cat_list_url = $base_url.'cat_list'; |
---|
306 | |
---|
307 | $self_url = $cat_list_url; |
---|
308 | if (isset($_GET['parent_id'])) |
---|
309 | { |
---|
310 | $self_url.= '&parent_id='.$_GET['parent_id']; |
---|
311 | } |
---|
312 | |
---|
313 | $template->assign_block_vars( |
---|
314 | 'category', |
---|
315 | array( |
---|
316 | 'NAME'=>$category['name'], |
---|
317 | 'ID'=>$category['id'], |
---|
318 | 'RANK'=>$category['rank']*10, |
---|
319 | |
---|
320 | 'U_JUMPTO'=> |
---|
321 | add_session_id(PHPWG_ROOT_PATH.'category.php?cat='.$category['id']), |
---|
322 | |
---|
323 | 'U_CHILDREN'=> |
---|
324 | add_session_id($cat_list_url.'&parent_id='.$category['id']), |
---|
325 | |
---|
326 | 'U_EDIT'=> |
---|
327 | add_session_id($base_url.'cat_modify&cat_id='.$category['id']) |
---|
328 | ) |
---|
329 | ); |
---|
330 | |
---|
331 | if (empty($category['dir'])) |
---|
332 | { |
---|
333 | $template->assign_block_vars( |
---|
334 | 'category.delete', |
---|
335 | array( |
---|
336 | 'URL'=>add_session_id($self_url.'&delete='.$category['id']) |
---|
337 | ) |
---|
338 | ); |
---|
339 | } |
---|
340 | |
---|
341 | if ($category['nb_images'] > 0) |
---|
342 | { |
---|
343 | $template->assign_block_vars( |
---|
344 | 'category.elements', |
---|
345 | array( |
---|
346 | 'URL'=>add_session_id($base_url.'element_set&cat='.$category['id']) |
---|
347 | ) |
---|
348 | ); |
---|
349 | } |
---|
350 | |
---|
351 | if ('private' == $category['status']) |
---|
352 | { |
---|
353 | $template->assign_block_vars( |
---|
354 | 'category.permissions', |
---|
355 | array( |
---|
356 | 'URL'=>add_session_id($base_url.'cat_perm&cat='.$category['id']) |
---|
357 | ) |
---|
358 | ); |
---|
359 | } |
---|
360 | } |
---|
361 | // +-----------------------------------------------------------------------+ |
---|
362 | // | sending html code | |
---|
363 | // +-----------------------------------------------------------------------+ |
---|
364 | $template->assign_var_from_handle('ADMIN_CONTENT', 'categories'); |
---|
365 | ?> |
---|