source: trunk/admin/element_set_unit.php @ 5933

Last change on this file since 5933 was 5933, checked in by nikrou, 14 years ago

Feature 1620 : add triggers on admin side for categories and batch mode.

  • Property svn:eol-style set to LF
File size: 7.7 KB
RevLine 
[763]1<?php
2// +-----------------------------------------------------------------------+
[2297]3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
[5196]5// | Copyright(C) 2008-2010 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// +-----------------------------------------------------------------------+
[763]23
24/**
25 * Management of elements set. Elements can belong to a category or to the
26 * user caddie.
[1609]27 *
[763]28 */
[1609]29
[763]30if (!defined('PHPWG_ROOT_PATH'))
31{
32  die('Hacking attempt!');
33}
34
[1072]35include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
36
[763]37// +-----------------------------------------------------------------------+
[1072]38// | Check Access and exit when user status is not ok                      |
39// +-----------------------------------------------------------------------+
40check_status(ACCESS_ADMINISTRATOR);
41
[5933]42trigger_action('loc_begin_element_set_unit');
43
[1072]44// +-----------------------------------------------------------------------+
[763]45// |                        unit mode form submission                      |
46// +-----------------------------------------------------------------------+
47
48if (isset($_POST['submit']))
49{
[2249]50  $collection = explode(',', $_POST['element_ids']);
[1609]51
[763]52  $datas = array();
[1609]53
[763]54  $query = '
55SELECT id, date_creation
56  FROM '.IMAGES_TABLE.'
57  WHERE id IN ('.implode(',', $collection).')
58;';
59  $result = pwg_query($query);
60
[4325]61  while ($row = pwg_db_fetch_assoc($result))
[763]62  {
63    $data = array();
[836]64
65    $data{'id'} = $row['id'];
66    $data{'name'} = $_POST['name-'.$row['id']];
67    $data{'author'} = $_POST['author-'.$row['id']];
68
69    foreach (array('name', 'author') as $field)
[763]70    {
71      if (!empty($_POST[$field.'-'.$row['id']]))
72      {
[836]73        $data{$field} = strip_tags($_POST[$field.'-'.$row['id']]);
[763]74      }
75    }
[1609]76
[836]77    if ($conf['allow_html_descriptions'])
78    {
79      $data{'comment'} = @$_POST['description-'.$row['id']];
80    }
81    else
82    {
83      $data{'comment'} = strip_tags(@$_POST['description-'.$row['id']]);
84    }
[763]85
[836]86    if (isset($_POST['date_creation_action-'.$row['id']]))
[763]87    {
[836]88      if ('set' == $_POST['date_creation_action-'.$row['id']])
89      {
90        $data{'date_creation'} =
91          $_POST['date_creation_year-'.$row['id']]
92            .'-'.$_POST['date_creation_month-'.$row['id']]
93            .'-'.$_POST['date_creation_day-'.$row['id']];
94      }
95      else if ('unset' == $_POST['date_creation_action-'.$row['id']])
96      {
97        $data{'date_creation'} = '';
98      }
[763]99    }
[836]100    else
[763]101    {
[836]102      $data{'date_creation'} = $row['date_creation'];
[763]103    }
[1609]104
[1119]105    array_push($datas, $data);
[763]106
[1119]107    // tags management
108    if (isset($_POST[ 'tags-'.$row['id'] ]))
[836]109    {
[5188]110      $tag_ids = get_fckb_tag_ids($_POST[ 'tags-'.$row['id'] ]);
111      set_tags($tag_ids, $row['id']);
[836]112    }
[763]113  }
[1609]114
[836]115  mass_updates(
116    IMAGES_TABLE,
117    array(
118      'primary' => array('id'),
[1119]119      'update' => array('name','author','comment','date_creation')
[836]120      ),
121    $datas
122    );
[1609]123
[836]124  array_push($page['infos'], l10n('Picture informations updated'));
[763]125}
126
127// +-----------------------------------------------------------------------+
128// |                             template init                             |
129// +-----------------------------------------------------------------------+
130
131$template->set_filenames(
[2530]132  array('element_set_unit' => 'element_set_unit.tpl'));
[763]133
134$base_url = PHPWG_ROOT_PATH.'admin.php';
135
[2249]136$month_list = $lang['month'];
137$month_list[0]='------------';
138ksort($month_list);
[763]139
[2249]140$template->assign(
[763]141  array(
[834]142    'CATEGORIES_NAV'=>$page['title'],
[764]143
[763]144    'U_ELEMENTS_PAGE'
145    =>$base_url.get_query_string_diff(array('display','start')),
[1609]146
[763]147    'U_GLOBAL_MODE'
[764]148    =>
149    $base_url
150    .get_query_string_diff(array('mode','display'))
151    .'&amp;mode=global',
[1609]152
[763]153    'F_ACTION'=>$base_url.get_query_string_diff(array()),
[2249]154   
155    'month_list' => $month_list
[763]156    )
157  );
158
159// +-----------------------------------------------------------------------+
160// |                        global mode thumbnails                         |
161// +-----------------------------------------------------------------------+
162
[875]163// how many items to display on this page
164if (!empty($_GET['display']))
165{
166  if ('all' == $_GET['display'])
167  {
168    $page['nb_images'] = count($page['cat_elements_id']);
169  }
170  else
171  {
172    $page['nb_images'] = intval($_GET['display']);
173  }
174}
175else
176{
177  $page['nb_images'] = 5;
178}
[763]179
[764]180
[875]181
[764]182if (count($page['cat_elements_id']) > 0)
183{
184  $nav_bar = create_navigation_bar(
185    $base_url.get_query_string_diff(array('start')),
186    count($page['cat_elements_id']),
187    $page['start'],
[1084]188    $page['nb_images']
189    );
[3172]190  $template->assign(array('navbar' => $nav_bar));
[764]191
[1119]192  // tags
193  $all_tags = get_all_tags();
[1609]194
[764]195  $element_ids = array();
196
197  $query = '
[1119]198SELECT id,path,tn_ext,name,date_creation,comment,author,file
[764]199  FROM '.IMAGES_TABLE.'
200  WHERE id IN ('.implode(',', $page['cat_elements_id']).')
[763]201  '.$conf['order_by'].'
[4334]202  LIMIT '.$page['nb_images'].' OFFSET '.$page['start'].'
[763]203;';
[764]204  $result = pwg_query($query);
[763]205
[4325]206  while ($row = pwg_db_fetch_assoc($result))
[763]207  {
[764]208    // echo '<pre>'; print_r($row); echo '</pre>';
209    array_push($element_ids, $row['id']);
[1119]210
[1609]211    $src = get_thumbnail_url($row);
212
[764]213    // creation date
214    if (!empty($row['date_creation']))
215    {
216      list($year,$month,$day) = explode('-', $row['date_creation']);
217    }
218    else
219    {
[2249]220      list($year,$month,$day) = array('',0,0);
[764]221    }
[1314]222
[5188]223    $query = '
224SELECT
225    tag_id,
226    name AS tag_name
227  FROM '.IMAGE_TAG_TABLE.' AS it
228    JOIN '.TAGS_TABLE.' AS t ON t.id = it.tag_id
229  WHERE image_id = '.$row['id'].'
230;';
231    $tag_selection = get_fckb_taglist($query);
[1609]232
[2249]233    $template->append(
234      'elements',
[764]235      array(
[2249]236        'ID' => $row['id'],
237        'TN_SRC' => $src,
[836]238        'LEGEND' =>
239          !empty($row['name']) ?
240            $row['name'] : get_name_from_file($row['file']),
241        'U_EDIT' =>
242            PHPWG_ROOT_PATH.'admin.php?page=picture_modify'.
[1004]243            '&amp;image_id='.$row['id'],
[764]244        'NAME' => @$row['name'],
245        'AUTHOR' => @$row['author'],
[836]246        'DESCRIPTION' => @$row['comment'],
[764]247        'DATE_CREATION_YEAR' => $year,
[2249]248        'DATE_CREATION_MONTH' => (int)$month,
249        'DATE_CREATION_DAY' => (int)$day,
[1609]250
[5188]251        'TAGS' => $tag_selection,
[764]252        )
253      );
[763]254  }
255
[2249]256  $template->assign('ELEMENT_IDS', implode(',', $element_ids));
[763]257}
258
[5933]259trigger_action('loc_end_element_set_unit');
260
[763]261// +-----------------------------------------------------------------------+
262// |                           sending html code                           |
263// +-----------------------------------------------------------------------+
264
265$template->assign_var_from_handle('ADMIN_CONTENT', 'element_set_unit');
266?>
Note: See TracBrowser for help on using the repository browser.