source: trunk/admin/cat_list.php @ 27836

Last change on this file since 27836 was 26461, checked in by mistic100, 10 years ago

Update headers to 2014. Happy new year!!

  • Property svn:eol-style set to LF
File size: 10.7 KB
RevLine 
[21]1<?php
[362]2// +-----------------------------------------------------------------------+
[8728]3// | Piwigo - a PHP based photo gallery                                    |
[2297]4// +-----------------------------------------------------------------------+
[26461]5// | Copyright(C) 2008-2014 Piwigo Team                  http://piwigo.org |
[2297]6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
[345]23
[580]24if (!defined('PHPWG_ROOT_PATH'))
[394]25{
[580]26  die('Hacking attempt!');
[394]27}
[798]28
[1072]29include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
30
[580]31// +-----------------------------------------------------------------------+
[1072]32// | Check Access and exit when user status is not ok                      |
33// +-----------------------------------------------------------------------+
34check_status(ACCESS_ADMINISTRATOR);
35
[5933]36trigger_action('loc_begin_cat_list');
37
[5195]38if (!empty($_POST) or isset($_GET['delete']))
39{
40  check_pwg_token();
41}
42
[1072]43// +-----------------------------------------------------------------------+
[798]44// |                               functions                               |
45// +-----------------------------------------------------------------------+
46
47/**
48 * save the rank depending on given categories order
49 *
50 * The list of ordered categories id is supposed to be in the same parent
51 * category
52 *
53 * @param array categories
54 * @return void
55 */
56function save_categories_order($categories)
57{
[6698]58  $current_rank_for_id_uppercat = array();
[798]59  $current_rank = 0;
[6698]60 
[798]61  $datas = array();
[6698]62  foreach ($categories as $category)
[798]63  {
[6698]64    if (is_array($category))
65    {
66      $id = $category['id'];
67      $id_uppercat = $category['id_uppercat'];
68
69      if (!isset($current_rank_for_id_uppercat[$id_uppercat]))
70      {
71        $current_rank_for_id_uppercat[$id_uppercat] = 0;
72      }
73      $current_rank = ++$current_rank_for_id_uppercat[$id_uppercat];
74    }
75    else
76    {
77      $id = $category;
78      $current_rank++;
79    }
80   
[25018]81    $datas[] = array('id' => $id, 'rank' => $current_rank);
[798]82  }
83  $fields = array('primary' => array('id'), 'update' => array('rank'));
84  mass_updates(CATEGORIES_TABLE, $fields, $datas);
85
[2306]86  update_global_rank();
[798]87}
88
89// +-----------------------------------------------------------------------+
[580]90// |                            initialization                             |
91// +-----------------------------------------------------------------------+
[834]92
[5195]93check_input_parameter('parent_id', $_GET, false, PATTERN_ID);
94
[580]95$categories = array();
[834]96
[2306]97$base_url = get_root_url().'admin.php?page=cat_list';
98$navigation = '<a href="'.$base_url.'">';
[5021]99$navigation.= l10n('Home');
[834]100$navigation.= '</a>';
101
[580]102// +-----------------------------------------------------------------------+
[13282]103// | tabs                                                                  |
104// +-----------------------------------------------------------------------+
105
106$page['tab'] = 'list';
107include(PHPWG_ROOT_PATH.'admin/include/albums_tab.inc.php');
108
109// +-----------------------------------------------------------------------+
[580]110// |                    virtual categories management                      |
111// +-----------------------------------------------------------------------+
[8131]112// request to delete a virtual category
[8126]113if (isset($_GET['delete']) and is_numeric($_GET['delete']))
[68]114{
[659]115  delete_categories(array($_GET['delete']));
[8168]116  $_SESSION['page_infos'] = array(l10n('Virtual album deleted'));
[659]117  update_global_rank();
[25975]118  invalidate_user_cache();
[8168]119
120  $redirect_url = get_root_url().'admin.php?page=cat_list';
121  if (isset($_GET['parent_id']))
122  {
123    $redirect_url.= '&parent_id='.$_GET['parent_id'];
[25975]124  }
[8168]125  redirect($redirect_url);
[394]126}
[602]127// request to add a virtual category
[25975]128elseif (isset($_POST['submitAdd']))
[394]129{
[1064]130  $output_create = create_virtual_category(
131    $_POST['virtual_name'],
132    @$_GET['parent_id']
133    );
134
[25975]135  invalidate_user_cache();
[1064]136  if (isset($output_create['error']))
[580]137  {
[25018]138    $page['errors'][] = $output_create['error'];
[580]139  }
[1064]140  else
[68]141  {
[25018]142    $page['infos'][] = $output_create['info'];
[68]143  }
144}
[1066]145// save manual category ordering
[25975]146elseif (isset($_POST['submitManualOrder']))
[798]147{
[13282]148  asort($_POST['catOrd'], SORT_NUMERIC);
149  save_categories_order(array_keys($_POST['catOrd']));
[1066]150
[25018]151  $page['infos'][] = l10n('Album manual order was saved');
[13282]152}
[25975]153elseif (isset($_POST['submitAutoOrder']))
[13282]154{
155  $query = '
[6698]156SELECT id
[1066]157  FROM '.CATEGORIES_TABLE.'
158  WHERE id_uppercat '.
159    (!isset($_GET['parent_id']) ? 'IS NULL' : '= '.$_GET['parent_id']).'
160;';
[13282]161  $category_ids = array_from_query($query, 'id');
[1066]162
[13282]163  if (isset($_POST['recursive']))
164  {
165    $category_ids = get_subcat_ids($category_ids);
166  }
[6698]167 
[13282]168  $categories = array();
169  $names = array();
170  $id_uppercats = array();
171 
172  $query = '
[6698]173SELECT id, name, id_uppercat
[5079]174  FROM '.CATEGORIES_TABLE.'
[6698]175  WHERE id IN ('.implode(',', $category_ids).')
[5079]176;';
[13282]177  $result = pwg_query($query);
178  while ($row = pwg_db_fetch_assoc($result))
179  {
[25018]180    $categories[] = array(
181      'id' => $row['id'],
182      'id_uppercat' => $row['id_uppercat'],
[6698]183      );
[25018]184    $names[] = $row['name'];
[6698]185  }
[13282]186
187  array_multisort(
188    $names,
189    SORT_REGULAR,
190    'asc' == $_POST['ascdesc'] ? SORT_ASC : SORT_DESC,
191    $categories
192    );
193  save_categories_order($categories);
194
[25018]195  $page['infos'][] = l10n('Albums automatically sorted');
[5079]196}
197
[580]198// +-----------------------------------------------------------------------+
199// |                            Navigation path                            |
200// +-----------------------------------------------------------------------+
[834]201
[394]202if (isset($_GET['parent_id']))
203{
[642]204  $navigation.= $conf['level_separator'];
[580]205
[1861]206  $navigation.= get_cat_display_name_from_id(
207    $_GET['parent_id'],
[25425]208    $base_url.'&amp;parent_id='
[1064]209    );
[394]210}
[580]211// +-----------------------------------------------------------------------+
212// |                       template initialization                         |
213// +-----------------------------------------------------------------------+
[2530]214$template->set_filename('categories', 'cat_list.tpl');
[394]215
[635]216$form_action = PHPWG_ROOT_PATH.'admin.php?page=cat_list';
217if (isset($_GET['parent_id']))
218{
219  $form_action.= '&amp;parent_id='.$_GET['parent_id'];
220}
221
[2223]222$template->assign(array(
[394]223  'CATEGORIES_NAV'=>$navigation,
[1004]224  'F_ACTION'=>$form_action,
[5195]225  'PWG_TOKEN' => get_pwg_token(),
[580]226 ));
[1131]227
[580]228// +-----------------------------------------------------------------------+
229// |                          Categories display                           |
230// +-----------------------------------------------------------------------+
[647]231
[798]232$categories = array();
233
234$query = '
[2324]235SELECT id, name, permalink, dir, rank, status
[798]236  FROM '.CATEGORIES_TABLE;
237if (!isset($_GET['parent_id']))
238{
239  $query.= '
240  WHERE id_uppercat IS NULL';
241}
242else
243{
244  $query.= '
245  WHERE id_uppercat = '.$_GET['parent_id'];
246}
247$query.= '
248  ORDER BY rank ASC
249;';
[2324]250$categories = hash_from_query($query, 'id');
[798]251
[2324]252// get the categories containing images directly
253$categories_with_images = array();
[26399]254if (count($categories))
[580]255{
[647]256  $query = '
[26399]257SELECT
258    category_id,
259    COUNT(*) AS nb_photos
[2324]260  FROM '.IMAGE_CATEGORY_TABLE.'
[26399]261  GROUP BY category_id
262;';
263  // WHERE category_id IN ('.implode(',', array_keys($categories)).')
264
265  $nb_photos_in = query2array($query, 'category_id', 'nb_photos');
266
267  $query = '
268SELECT
269    id,
270    uppercats
271  FROM '.CATEGORIES_TABLE.'
272;';
273  $all_categories = query2array($query, 'id', 'uppercats');
274  $subcats_of = array();
275
276  foreach (array_keys($categories) as $cat_id)
277  {
278    foreach ($all_categories as $id => $uppercats)
279    {
280      if (preg_match('/(^|,)'.$cat_id.',/', $uppercats))
281      {
282        @$subcats_of[$cat_id][] = $id;
283      }
284    }
285  }
286
287  $nb_sub_photos = array();
288  foreach ($subcats_of as $cat_id => $subcat_ids)
289  {
290    $nb_photos = 0;
291    foreach ($subcat_ids as $id)
292    {
293      if (isset($nb_photos_in[$id]))
294      {
295        $nb_photos+= $nb_photos_in[$id];
296      }
297    }
298
299    $nb_sub_photos[$cat_id] = $nb_photos;
300  }
[642]301}
302
[2223]303$template->assign('categories', array());
[2324]304$base_url = get_root_url().'admin.php?page=';
[24985]305
306if (isset($_GET['parent_id']))
307{
308  $template->assign(
309    'PARENT_EDIT',
310    $base_url.'album-'.$_GET['parent_id']
311    );
312}
313
[642]314foreach ($categories as $category)
315{
[580]316  $cat_list_url = $base_url.'cat_list';
[1131]317
[580]318  $self_url = $cat_list_url;
[394]319  if (isset($_GET['parent_id']))
[580]320  {
321    $self_url.= '&amp;parent_id='.$_GET['parent_id'];
322  }
[394]323
[2223]324  $tpl_cat =
[580]325    array(
[2433]326      'NAME'       => 
327        trigger_event(
328          'render_category_name',
329          $category['name'],
330          'admin_cat_list'
331          ),
[26399]332      'NB_PHOTOS' => isset($nb_photos_in[$category['id']]) ? $nb_photos_in[$category['id']] : 0,
333      'NB_SUB_PHOTOS' => isset($nb_sub_photos[$category['id']]) ? $nb_sub_photos[$category['id']] : 0,
334      'NB_SUB_ALBUMS' => isset($subcats_of[$category['id']]) ? count($subcats_of[$category['id']]) : 0,
[1082]335      'ID'         => $category['id'],
336      'RANK'       => $category['rank']*10,
[798]337
[1082]338      'U_JUMPTO'   => make_index_url(
339        array(
[1861]340          'category' => $category
[1082]341          )
342        ),
[1131]343
344      'U_CHILDREN' => $cat_list_url.'&amp;parent_id='.$category['id'],
[13013]345      'U_EDIT'     => $base_url.'album-'.$category['id'],
[2306]346
[2223]347      'IS_VIRTUAL' => empty($category['dir'])
[798]348    );
[1131]349
[798]350  if (empty($category['dir']))
[21]351  {
[2223]352    $tpl_cat['U_DELETE'] = $self_url.'&amp;delete='.$category['id'];
[5195]353    $tpl_cat['U_DELETE'].= '&amp;pwg_token='.get_pwg_token();
[21]354  }
[11041]355  else
356  {
357    if ($conf['enable_synchronization'])
358    {
359      $tpl_cat['U_SYNC'] = $base_url.'site_update&amp;site=1&amp;cat_id='.$category['id'];
360    }
361  }
[1131]362
[2223]363  $template->append('categories', $tpl_cat);
[21]364}
[5933]365
366trigger_action('loc_end_cat_list');
367
[580]368// +-----------------------------------------------------------------------+
369// |                          sending html code                            |
370// +-----------------------------------------------------------------------+
[394]371$template->assign_var_from_handle('ADMIN_CONTENT', 'categories');
[362]372?>
Note: See TracBrowser for help on using the repository browser.