source: trunk/admin/cat_modify.php @ 13018

Last change on this file since 13018 was 13013, checked in by plg, 12 years ago

feature 2561: redesign on album administration screen.

  • only one form on the screen and several tabs
  • simpler URL pattern : page=album-123-properties / page=album-123-sort_order / page=album-123-permissions
  • action to associate all photos of an album to another (new) virtual album was removed. This can be easily done with the new Batch Manager
  • notification by email on an album still has to be moved on a new dedicated tab
  • action icons (jump to album, manage photos, manage sub-albums, delete album...) replaced by plain text links
  • Property svn:eol-style set to LF
File size: 11.2 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2012 Piwigo Team                  http://piwigo.org |
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// +-----------------------------------------------------------------------+
23
24if (!defined('PHPWG_ROOT_PATH'))
25{
26  die('Hacking attempt!');
27}
28
29include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php');
30
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
101// +-----------------------------------------------------------------------+
102// | Check Access and exit when user status is not ok                      |
103// +-----------------------------------------------------------------------+
104check_status(ACCESS_ADMINISTRATOR);
105
106trigger_action('loc_begin_cat_modify');
107
108//---------------------------------------------------------------- verification
109if ( !isset( $_GET['cat_id'] ) || !is_numeric( $_GET['cat_id'] ) )
110{
111  trigger_error( 'missing cat_id param', E_USER_ERROR);
112}
113
114//--------------------------------------------------------- form criteria check
115if (isset($_POST['submit']))
116{
117  $data =
118    array(
119      'id' => $_GET['cat_id'],
120      'name' => @$_POST['name'],
121      'comment' =>
122        $conf['allow_html_descriptions'] ?
123          @$_POST['comment'] : strip_tags(@$_POST['comment']),
124      );
125     
126  if ($conf['activate_comments'])
127  {
128    $data['commentable'] = isset($_POST['commentable'])?$_POST['commentable']:'false';
129  }
130
131  mass_updates(
132    CATEGORIES_TABLE,
133    array(
134      'primary' => array('id'),
135      'update' => array_diff(array_keys($data), array('id'))
136      ),
137    array($data)
138    );
139
140  // retrieve cat infos before continuing (following updates are expensive)
141  $cat_info = get_cat_info($_GET['cat_id']);
142
143  if ($cat_info['visible'] != get_boolean( $_POST['visible'] ) )
144  {
145    set_cat_visible(array($_GET['cat_id']), $_POST['visible']);
146  }
147  if ($cat_info['status'] != $_POST['status'] )
148  {
149    set_cat_status(array($_GET['cat_id']), $_POST['status']);
150  }
151
152  // in case the use moves his album to the gallery root, we force
153  // $_POST['parent'] from 0 to null to be compared with
154  // $cat_info['id_uppercat']
155  if (empty($_POST['parent']))
156  {
157    $_POST['parent'] = null;
158  }
159
160  // only move virtual albums
161  if (empty($cat_info['dir']) and $cat_info['id_uppercat'] != $_POST['parent'])
162  {
163    move_categories( array($_GET['cat_id']), $_POST['parent'] );
164  }
165
166  // we redirect to hide/show the "permissions" tab if the category status
167  // has changed
168  $_SESSION['page_infos'] = array(l10n('Album updated successfully'));
169  redirect($admin_album_base_url);
170}
171elseif (isset($_POST['set_random_representant']))
172{
173  set_random_representant(array($_GET['cat_id']));
174}
175elseif (isset($_POST['delete_representant']))
176{
177  $query = '
178UPDATE '.CATEGORIES_TABLE.'
179  SET representative_picture_id = NULL
180  WHERE id = '.$_GET['cat_id'].'
181;';
182  pwg_query($query);
183}
184
185// nullable fields
186foreach (array('comment','dir','site_id', 'id_uppercat') as $nullable)
187{
188  if (!isset($category[$nullable]))
189  {
190    $category[$nullable] = '';
191  }
192}
193
194$category['is_virtual'] = empty($category['dir']) ? true : false;
195
196$query = 'SELECT DISTINCT category_id
197  FROM '.IMAGE_CATEGORY_TABLE.'
198  WHERE category_id = '.$_GET['cat_id'].'
199  LIMIT 1';
200$result = pwg_query($query);
201$category['has_images'] = pwg_db_num_rows($result)>0 ? true : false;
202
203// Navigation path
204$navigation = get_cat_display_name_cache(
205  $category['uppercats'],
206  get_root_url().'admin.php?page=album-'
207  );
208
209$form_action = $admin_album_base_url.'-properties';
210
211//----------------------------------------------------- template initialization
212$template->set_filename( 'album_properties', 'cat_modify.tpl');
213
214$base_url = get_root_url().'admin.php?page=';
215$cat_list_url = $base_url.'cat_list';
216
217$self_url = $cat_list_url;
218if (!empty($category['id_uppercat']))
219{
220  $self_url.= '&amp;parent_id='.$category['id_uppercat'];
221}
222
223$template->assign(
224  array(
225    'CATEGORIES_NAV'     => $navigation,
226    'CAT_ID'             => $category['id'],
227    'CAT_NAME'           => @htmlspecialchars($category['name']),
228    'CAT_COMMENT'        => @htmlspecialchars($category['comment']),
229
230    'status_values'     => array('public','private'),
231
232    'CAT_STATUS'        => $category['status'],
233    'CAT_VISIBLE'       => boolean_to_string($category['visible']),
234
235    'U_JUMPTO' => make_index_url(
236      array(
237        'category' => $category
238        )
239      ),
240
241    'U_CHILDREN' => $cat_list_url.'&amp;parent_id='.$category['id'],
242    'U_HELP' => get_root_url().'admin/popuphelp.php?page=cat_modify',
243
244    'F_ACTION' => $form_action,
245    )
246  );
247 
248if ($conf['activate_comments'])
249{
250  $template->assign('CAT_COMMENTABLE', boolean_to_string($category['commentable']));
251}
252
253// manage album elements link
254if ($category['has_images'])
255{
256  $template->assign(
257    'U_MANAGE_ELEMENTS',
258    $base_url.'batch_manager&amp;cat='.$category['id']
259    );
260
261  $query = '
262SELECT
263    COUNT(image_id),
264    MIN(DATE(date_available)),
265    MAX(DATE(date_available))
266  FROM '.IMAGES_TABLE.'
267    JOIN '.IMAGE_CATEGORY_TABLE.' ON image_id = id
268  WHERE category_id = '.$category['id'].'
269;';
270  list($image_count, $min_date, $max_date) = pwg_db_fetch_row(pwg_query($query));
271
272  if ($min_date == $max_date)
273  {
274    $intro = sprintf(
275      l10n('This album contains %d photos, added on %s.'),
276      $image_count,
277      format_date($min_date)
278      );
279  }
280  else
281  {
282    $intro = sprintf(
283      l10n('This album contains %d photos, added between %s and %s.'),
284      $image_count,
285      format_date($min_date),
286      format_date($max_date)
287      );
288  }
289}
290else
291{
292  $intro = l10n('This album contains no photo.');
293}
294
295$template->assign('INTRO', $intro);
296
297$template->assign(
298  'U_MANAGE_RANKS',
299  $base_url.'element_set_ranks&amp;cat_id='.$category['id']
300  );
301
302if ($category['is_virtual'])
303{
304  $template->assign(
305    array(
306      'U_DELETE' => $self_url.'&amp;delete='.$category['id'].'&amp;pwg_token='.get_pwg_token(),
307      )
308    );
309}
310else
311{
312  $category['cat_full_dir'] = get_complete_dir($_GET['cat_id']);
313  $template->assign(
314    array(
315      'CAT_FULL_DIR' => preg_replace('/\/$/', '', $category['cat_full_dir'])
316      )
317    );
318
319  if ($conf['enable_synchronization'])
320  {
321    $template->assign(
322      'U_SYNC',
323      $base_url.'site_update&amp;site=1&amp;cat_id='.$category['id']
324      );
325  }
326
327}
328
329// representant management
330if ($category['has_images']
331    or !empty($category['representative_picture_id']))
332{
333  $tpl_representant = array();
334
335  // picture to display : the identified representant or the generic random
336  // representant ?
337  if (!empty($category['representative_picture_id']))
338  {
339    $query = '
340SELECT id,representative_ext,path
341  FROM '.IMAGES_TABLE.'
342  WHERE id = '.$category['representative_picture_id'].'
343;';
344    $row = pwg_db_fetch_assoc(pwg_query($query));
345    $src = DerivativeImage::thumb_url($row);
346    $url = get_root_url().'admin.php?page=picture_modify';
347    $url.= '&amp;image_id='.$category['representative_picture_id'];
348
349    $tpl_representant['picture'] =
350      array(
351        'SRC' => $src,
352        'URL' => $url
353      );
354  }
355
356  // can the admin choose to set a new random representant ?
357  $tpl_representant['ALLOW_SET_RANDOM'] = ($category['has_images']) ? true : false;
358
359  // can the admin delete the current representant ?
360  if (
361    ($category['has_images']
362     and $conf['allow_random_representative'])
363    or
364    (!$category['has_images']
365     and !empty($category['representative_picture_id'])))
366  {
367    $tpl_representant['ALLOW_DELETE'] = true;
368  }
369  $template->assign('representant', $tpl_representant);
370}
371
372if ($category['is_virtual'])
373{
374  // the category can be moved in any category but in itself, in any
375  // sub-category
376  $unmovables = get_subcat_ids(array($category['id']));
377
378  $query = '
379SELECT id,name,uppercats,global_rank
380  FROM '.CATEGORIES_TABLE.'
381  WHERE id NOT IN ('.implode(',', $unmovables).')
382;';
383
384  display_select_cat_wrapper(
385    $query,
386    empty($category['id_uppercat']) ? array() : array($category['id_uppercat']),
387    'move_cat_options'
388    );
389}
390
391trigger_action('loc_end_cat_modify');
392
393//----------------------------------------------------------- sending html code
394$template->assign_var_from_handle('ADMIN_CONTENT', 'album_properties');
395?>
Note: See TracBrowser for help on using the repository browser.