source: trunk/admin/cat_options.php @ 13018

Last change on this file since 13018 was 12922, checked in by mistic100, 12 years ago

update Piwigo headers to 2012, last change before the expected (or not) apocalypse

  • Property svn:eol-style set to LF
File size: 8.3 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.'admin/include/functions.php');
30include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
31
32// +-----------------------------------------------------------------------+
33// | Check Access and exit when user status is not ok                      |
34// +-----------------------------------------------------------------------+
35check_status(ACCESS_ADMINISTRATOR);
36
37// +-----------------------------------------------------------------------+
38// |                       modification registration                       |
39// +-----------------------------------------------------------------------+
40
41// print '<pre>';
42// print_r($_POST);
43// print '</pre>';
44if (isset($_POST['falsify'])
45    and isset($_POST['cat_true'])
46    and count($_POST['cat_true']) > 0)
47{
48  switch ($_GET['section'])
49  {
50    case 'comments' :
51    {
52      $query = '
53UPDATE '.CATEGORIES_TABLE.'
54  SET commentable = \'false\'
55  WHERE id IN ('.implode(',', $_POST['cat_true']).')
56;';
57      pwg_query($query);
58      break;
59    }
60    case 'visible' :
61    {
62      set_cat_visible($_POST['cat_true'], 'false');
63      break;
64    }
65    case 'status' :
66    {
67      set_cat_status($_POST['cat_true'], 'private');
68      break;
69    }
70    case 'representative' :
71    {
72      $query = '
73UPDATE '.CATEGORIES_TABLE.'
74  SET representative_picture_id = NULL
75  WHERE id IN ('.implode(',', $_POST['cat_true']).')
76;';
77      pwg_query($query);
78      break;
79    }
80  }
81}
82else if (isset($_POST['trueify'])
83         and isset($_POST['cat_false'])
84         and count($_POST['cat_false']) > 0)
85{
86  switch ($_GET['section'])
87  {
88    case 'comments' :
89    {
90      $query = '
91UPDATE '.CATEGORIES_TABLE.'
92  SET commentable = \'true\'
93  WHERE id IN ('.implode(',', $_POST['cat_false']).')
94;';
95      pwg_query($query);
96      break;
97    }
98    case 'visible' :
99    {
100      set_cat_visible($_POST['cat_false'], 'true');
101      break;
102    }
103    case 'status' :
104    {
105      set_cat_status($_POST['cat_false'], 'public');
106      break;
107    }
108    case 'representative' :
109    {
110      // theoretically, all categories in $_POST['cat_false'] contain at
111      // least one element, so Piwigo can find a representant.
112      set_random_representant($_POST['cat_false']);
113      break;
114    }
115  }
116}
117
118// +-----------------------------------------------------------------------+
119// |                             template init                             |
120// +-----------------------------------------------------------------------+
121
122$template->set_filenames(
123  array(
124    'cat_options' => 'cat_options.tpl',
125    'double_select' => 'double_select.tpl'
126    )
127  );
128
129$page['section'] = isset($_GET['section']) ? $_GET['section'] : 'status';
130$base_url = PHPWG_ROOT_PATH.'admin.php?page=cat_options&amp;section=';
131
132$template->assign(
133  array(
134    'U_HELP' => get_root_url().'admin/popuphelp.php?page=cat_options',
135    'F_ACTION'=>$base_url.$page['section']
136   )
137 );
138
139// TabSheet
140$tabsheet = new tabsheet();
141// TabSheet initialization
142$opt_link = $link_start.'cat_options&amp;section=';
143$tabsheet->add('status', l10n('Public / Private'), $opt_link.'status');
144$tabsheet->add('visible', l10n('Lock'), $opt_link.'visible');
145if ($conf['activate_comments'])
146{
147  $tabsheet->add('comments', l10n('Comments'), $opt_link.'comments');
148}
149if ($conf['allow_random_representative'])
150{
151  $tabsheet->add('representative', l10n('Representative'), $opt_link.'representative');
152}
153// TabSheet selection
154$tabsheet->select($page['section']);
155// Assign tabsheet to template
156$tabsheet->assign();
157
158// +-----------------------------------------------------------------------+
159// |                              form display                             |
160// +-----------------------------------------------------------------------+
161
162// for each section, categories in the multiselect field can be :
163//
164// - true : commentable for comment section
165// - false : un-commentable for comment section
166// - NA : (not applicable) for virtual categories
167//
168// for true and false status, we associates an array of category ids,
169// function display_select_categories will use the given CSS class for each
170// option
171$cats_true = array();
172$cats_false = array();
173switch ($page['section'])
174{
175  case 'comments' :
176  {
177    $query_true = '
178SELECT id,name,uppercats,global_rank
179  FROM '.CATEGORIES_TABLE.'
180  WHERE commentable = \'true\'
181;';
182    $query_false = '
183SELECT id,name,uppercats,global_rank
184  FROM '.CATEGORIES_TABLE.'
185  WHERE commentable = \'false\'
186;';
187    $template->assign(
188      array(
189        'L_SECTION' => l10n('Authorize users to add comments on selected albums'),
190        'L_CAT_OPTIONS_TRUE' => l10n('Authorized'),
191        'L_CAT_OPTIONS_FALSE' => l10n('Forbidden'),
192        )
193      );
194    break;
195  }
196  case 'visible' :
197  {
198    $query_true = '
199SELECT id,name,uppercats,global_rank
200  FROM '.CATEGORIES_TABLE.'
201  WHERE visible = \'true\'
202;';
203    $query_false = '
204SELECT id,name,uppercats,global_rank
205  FROM '.CATEGORIES_TABLE.'
206  WHERE visible = \'false\'
207;';
208    $template->assign(
209      array(
210        'L_SECTION' => l10n('Lock albums'),
211        'L_CAT_OPTIONS_TRUE' => l10n('Unlocked'),
212        'L_CAT_OPTIONS_FALSE' => l10n('Locked'),
213        )
214      );
215    break;
216  }
217  case 'status' :
218  {
219    $query_true = '
220SELECT id,name,uppercats,global_rank
221  FROM '.CATEGORIES_TABLE.'
222  WHERE status = \'public\'
223;';
224    $query_false = '
225SELECT id,name,uppercats,global_rank
226  FROM '.CATEGORIES_TABLE.'
227  WHERE status = \'private\'
228;';
229    $template->assign(
230      array(
231        'L_SECTION' => l10n('Manage authorizations for selected albums'),
232        'L_CAT_OPTIONS_TRUE' => l10n('Public'),
233        'L_CAT_OPTIONS_FALSE' => l10n('Private'),
234        )
235      );
236    break;
237  }
238  case 'representative' :
239  {
240    $query_true = '
241SELECT id,name,uppercats,global_rank
242  FROM '.CATEGORIES_TABLE.'
243  WHERE representative_picture_id IS NOT NULL
244;';
245    $query_false = '
246SELECT DISTINCT id,name,uppercats,global_rank
247  FROM '.CATEGORIES_TABLE.' INNER JOIN '.IMAGE_CATEGORY_TABLE.' ON id=category_id
248  WHERE representative_picture_id IS NULL
249;';
250    $template->assign(
251      array(
252        'L_SECTION' => l10n('Representative'),
253        'L_CAT_OPTIONS_TRUE' => l10n('singly represented'),
254        'L_CAT_OPTIONS_FALSE' => l10n('randomly represented')
255        )
256      );
257    break;
258  }
259}
260display_select_cat_wrapper($query_true,array(),'category_option_true');
261display_select_cat_wrapper($query_false,array(),'category_option_false');
262
263// +-----------------------------------------------------------------------+
264// |                           sending html code                           |
265// +-----------------------------------------------------------------------+
266
267$template->assign_var_from_handle('DOUBLE_SELECT', 'double_select');
268$template->assign_var_from_handle('ADMIN_CONTENT', 'cat_options');
269?>
Note: See TracBrowser for help on using the repository browser.