source: trunk/admin/cat_modify.php @ 26051

Last change on this file since 26051 was 25593, checked in by plg, 11 years ago

feature 3001: new link "add photos" on album edition page. Patch by msakik

  • Property svn:eol-style set to LF
File size: 11.0 KB
RevLine 
[21]1<?php
[362]2// +-----------------------------------------------------------------------+
[8728]3// | Piwigo - a PHP based photo gallery                                    |
[2297]4// +-----------------------------------------------------------------------+
[19703]5// | Copyright(C) 2008-2013 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// +-----------------------------------------------------------------------+
[21]23
[632]24if (!defined('PHPWG_ROOT_PATH'))
[403]25{
[632]26  die('Hacking attempt!');
[403]27}
[1072]28
[1895]29include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php');
[1072]30
[12954]31
32// get_complete_dir returns the concatenation of get_site_url and
33// get_local_dir
34// Example : "pets > rex > 1_year_old" is on the the same site as the
35// Piwigo files and this category has 22 for identifier
36// get_complete_dir(22) returns "./galleries/pets/rex/1_year_old/"
37function get_complete_dir( $category_id )
38{
39  return get_site_url($category_id).get_local_dir($category_id);
40}
41
42// get_local_dir returns an array with complete path without the site url
43// Example : "pets > rex > 1_year_old" is on the the same site as the
44// Piwigo files and this category has 22 for identifier
45// get_local_dir(22) returns "pets/rex/1_year_old/"
46function get_local_dir( $category_id )
47{
48  global $page;
49
50  $uppercats = '';
51  $local_dir = '';
52
53  if ( isset( $page['plain_structure'][$category_id]['uppercats'] ) )
54  {
55    $uppercats = $page['plain_structure'][$category_id]['uppercats'];
56  }
57  else
58  {
59    $query = 'SELECT uppercats';
60    $query.= ' FROM '.CATEGORIES_TABLE.' WHERE id = '.$category_id;
61    $query.= ';';
62    $row = pwg_db_fetch_assoc( pwg_query( $query ) );
63    $uppercats = $row['uppercats'];
64  }
65
66  $upper_array = explode( ',', $uppercats );
67
68  $database_dirs = array();
69  $query = 'SELECT id,dir';
70  $query.= ' FROM '.CATEGORIES_TABLE.' WHERE id IN ('.$uppercats.')';
71  $query.= ';';
72  $result = pwg_query( $query );
73  while( $row = pwg_db_fetch_assoc( $result ) )
74  {
75    $database_dirs[$row['id']] = $row['dir'];
76  }
77  foreach ($upper_array as $id)
78  {
79    $local_dir.= $database_dirs[$id].'/';
80  }
81
82  return $local_dir;
83}
84
85// retrieving the site url : "http://domain.com/gallery/" or
86// simply "./galleries/"
87function get_site_url($category_id)
88{
89  global $page;
90
91  $query = '
92SELECT galleries_url
93  FROM '.SITES_TABLE.' AS s,'.CATEGORIES_TABLE.' AS c
94  WHERE s.id = c.site_id
95    AND c.id = '.$category_id.'
96;';
97  $row = pwg_db_fetch_assoc(pwg_query($query));
98  return $row['galleries_url'];
99}
100
[1072]101// +-----------------------------------------------------------------------+
102// | Check Access and exit when user status is not ok                      |
103// +-----------------------------------------------------------------------+
104check_status(ACCESS_ADMINISTRATOR);
105
[5933]106trigger_action('loc_begin_cat_modify');
107
[21]108//---------------------------------------------------------------- verification
[403]109if ( !isset( $_GET['cat_id'] ) || !is_numeric( $_GET['cat_id'] ) )
[21]110{
[2490]111  trigger_error( 'missing cat_id param', E_USER_ERROR);
[21]112}
[403]113
[21]114//--------------------------------------------------------- form criteria check
[825]115if (isset($_POST['submit']))
[21]116{
[25019]117  $data = array(
118    'id' => $_GET['cat_id'],
119    'name' => @$_POST['name'],
120    'comment' =>
121      $conf['allow_html_descriptions'] ?
122        @$_POST['comment'] : strip_tags(@$_POST['comment']),
123    );
[12887]124     
125  if ($conf['activate_comments'])
126  {
127    $data['commentable'] = isset($_POST['commentable'])?$_POST['commentable']:'false';
128  }
[25019]129 
130  single_update(
[825]131    CATEGORIES_TABLE,
[25019]132    $data,
133    array('id' => $data['id'])
[825]134    );
[1131]135
[2490]136  // retrieve cat infos before continuing (following updates are expensive)
137  $cat_info = get_cat_info($_GET['cat_id']);
[345]138
[2490]139  if ($cat_info['visible'] != get_boolean( $_POST['visible'] ) )
[1500]140  {
[2490]141    set_cat_visible(array($_GET['cat_id']), $_POST['visible']);
[1500]142  }
[2490]143
[12576]144  // in case the use moves his album to the gallery root, we force
145  // $_POST['parent'] from 0 to null to be compared with
146  // $cat_info['id_uppercat']
147  if (empty($_POST['parent']))
[1500]148  {
[12576]149    $_POST['parent'] = null;
150  }
[12591]151
152  // only move virtual albums
153  if (empty($cat_info['dir']) and $cat_info['id_uppercat'] != $_POST['parent'])
[12576]154  {
[2490]155    move_categories( array($_GET['cat_id']), $_POST['parent'] );
[1500]156  }
157
[14506]158  $_SESSION['page_infos'][] = l10n('Album updated successfully');
159  $redirect = true;
[21]160}
[2490]161elseif (isset($_POST['set_random_representant']))
[633]162{
163  set_random_representant(array($_GET['cat_id']));
[14506]164  $redirect = true;
[633]165}
[2490]166elseif (isset($_POST['delete_representant']))
[809]167{
168  $query = '
169UPDATE '.CATEGORIES_TABLE.'
170  SET representative_picture_id = NULL
171  WHERE id = '.$_GET['cat_id'].'
172;';
173  pwg_query($query);
[14506]174  $redirect = true;
[809]175}
[1131]176
[14506]177if (isset($redirect))
178{
179  redirect($admin_album_base_url.'-properties');
180}
181
[530]182// nullable fields
[809]183foreach (array('comment','dir','site_id', 'id_uppercat') as $nullable)
[530]184{
185  if (!isset($category[$nullable]))
186  {
187    $category[$nullable] = '';
188  }
189}
[345]190
[809]191$category['is_virtual'] = empty($category['dir']) ? true : false;
192
[2324]193$query = 'SELECT DISTINCT category_id
194  FROM '.IMAGE_CATEGORY_TABLE.'
195  WHERE category_id = '.$_GET['cat_id'].'
196  LIMIT 1';
197$result = pwg_query($query);
[4325]198$category['has_images'] = pwg_db_num_rows($result)>0 ? true : false;
[2223]199
[403]200// Navigation path
[834]201$navigation = get_cat_display_name_cache(
[635]202  $category['uppercats'],
[13013]203  get_root_url().'admin.php?page=album-'
[834]204  );
[345]205
[13013]206$form_action = $admin_album_base_url.'-properties';
[403]207
208//----------------------------------------------------- template initialization
[13013]209$template->set_filename( 'album_properties', 'cat_modify.tpl');
[809]210
[2286]211$base_url = get_root_url().'admin.php?page=';
[809]212$cat_list_url = $base_url.'cat_list';
[1131]213
[809]214$self_url = $cat_list_url;
215if (!empty($category['id_uppercat']))
216{
217  $self_url.= '&amp;parent_id='.$category['id_uppercat'];
218}
219
[2223]220$template->assign(
[1131]221  array(
[1082]222    'CATEGORIES_NAV'     => $navigation,
[2777]223    'CAT_ID'             => $category['id'],
[2223]224    'CAT_NAME'           => @htmlspecialchars($category['name']),
225    'CAT_COMMENT'        => @htmlspecialchars($category['comment']),
[4385]226    'CAT_VISIBLE'       => boolean_to_string($category['visible']),
[2223]227
[1082]228    'U_JUMPTO' => make_index_url(
229      array(
[1861]230        'category' => $category
[1082]231        )
232      ),
[1131]233
[25593]234    'U_ADD_PHOTOS_ALBUM' => $base_url.'photos_add&amp;album='.$category['id'],
[1082]235    'U_CHILDREN' => $cat_list_url.'&amp;parent_id='.$category['id'],
[5920]236    'U_HELP' => get_root_url().'admin/popuphelp.php?page=cat_modify',
[1131]237
[1082]238    'F_ACTION' => $form_action,
239    )
240  );
[12887]241 
242if ($conf['activate_comments'])
243{
244  $template->assign('CAT_COMMENTABLE', boolean_to_string($category['commentable']));
245}
[633]246
[6988]247// manage album elements link
[2324]248if ($category['has_images'])
[633]249{
[2517]250  $template->assign(
251    'U_MANAGE_ELEMENTS',
[24834]252    $base_url.'batch_manager&amp;filter=album-'.$category['id']
[2223]253    );
[13013]254
255  $query = '
256SELECT
257    COUNT(image_id),
258    MIN(DATE(date_available)),
259    MAX(DATE(date_available))
260  FROM '.IMAGES_TABLE.'
261    JOIN '.IMAGE_CATEGORY_TABLE.' ON image_id = id
262  WHERE category_id = '.$category['id'].'
263;';
264  list($image_count, $min_date, $max_date) = pwg_db_fetch_row(pwg_query($query));
265
266  if ($min_date == $max_date)
267  {
[25005]268    $intro = l10n(
269      'This album contains %d photos, added on %s.',
[13013]270      $image_count,
271      format_date($min_date)
272      );
273  }
274  else
275  {
[25005]276    $intro = l10n(
277      'This album contains %d photos, added between %s and %s.',
[13013]278      $image_count,
279      format_date($min_date),
280      format_date($max_date)
281      );
282  }
[2223]283}
[13013]284else
285{
286  $intro = l10n('This album contains no photo.');
287}
[2223]288
[25005]289$intro.= '<br>'.l10n('Numeric identifier : %d', $category['id']);
[14990]290
[13013]291$template->assign('INTRO', $intro);
292
[9051]293$template->assign(
294  'U_MANAGE_RANKS',
295  $base_url.'element_set_ranks&amp;cat_id='.$category['id']
296  );
297
[2223]298if ($category['is_virtual'])
299{
300  $template->assign(
[809]301    array(
[5335]302      'U_DELETE' => $self_url.'&amp;delete='.$category['id'].'&amp;pwg_token='.get_pwg_token(),
[809]303      )
304    );
305}
[2223]306else
[1500]307{
[2223]308  $category['cat_full_dir'] = get_complete_dir($_GET['cat_id']);
309  $template->assign(
310    array(
[13013]311      'CAT_FULL_DIR' => preg_replace('/\/$/', '', $category['cat_full_dir'])
[2223]312      )
313    );
[11041]314
315  if ($conf['enable_synchronization'])
316  {
317    $template->assign(
318      'U_SYNC',
319      $base_url.'site_update&amp;site=1&amp;cat_id='.$category['id']
320      );
321  }
322
[1500]323}
324
[809]325// representant management
[2324]326if ($category['has_images']
[809]327    or !empty($category['representative_picture_id']))
328{
[2223]329  $tpl_representant = array();
[809]330
331  // picture to display : the identified representant or the generic random
332  // representant ?
333  if (!empty($category['representative_picture_id']))
334  {
335    $query = '
[12796]336SELECT id,representative_ext,path
[633]337  FROM '.IMAGES_TABLE.'
338  WHERE id = '.$category['representative_picture_id'].'
339;';
[4325]340    $row = pwg_db_fetch_assoc(pwg_query($query));
[12796]341    $src = DerivativeImage::thumb_url($row);
[13077]342    $url = get_root_url().'admin.php?page=photo-'.$category['representative_picture_id'];
[1131]343
[2223]344    $tpl_representant['picture'] =
[809]345      array(
346        'SRC' => $src,
347        'URL' => $url
348      );
349  }
350
351  // can the admin choose to set a new random representant ?
[2324]352  $tpl_representant['ALLOW_SET_RANDOM'] = ($category['has_images']) ? true : false;
[809]353
354  // can the admin delete the current representant ?
355  if (
[2324]356    ($category['has_images']
[809]357     and $conf['allow_random_representative'])
358    or
[2324]359    (!$category['has_images']
[809]360     and !empty($category['representative_picture_id'])))
361  {
[2223]362    $tpl_representant['ALLOW_DELETE'] = true;
[809]363  }
[2223]364  $template->assign('representant', $tpl_representant);
[633]365}
366
[2223]367if ($category['is_virtual'])
[68]368{
[809]369  // the category can be moved in any category but in itself, in any
370  // sub-category
371  $unmovables = get_subcat_ids(array($category['id']));
[1131]372
[809]373  $query = '
374SELECT id,name,uppercats,global_rank
375  FROM '.CATEGORIES_TABLE.'
376  WHERE id NOT IN ('.implode(',', $unmovables).')
377;';
[1131]378
[809]379  display_select_cat_wrapper(
380    $query,
381    empty($category['id_uppercat']) ? array() : array($category['id_uppercat']),
[2223]382    'move_cat_options'
[809]383    );
384}
385
[5933]386trigger_action('loc_end_cat_modify');
387
[21]388//----------------------------------------------------------- sending html code
[13013]389$template->assign_var_from_handle('ADMIN_CONTENT', 'album_properties');
[7024]390?>
Note: See TracBrowser for help on using the repository browser.