source: trunk/admin/cat_options.php @ 6323

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

Bug 1617 fixed : help page is displayed in current theme in public or admin pages

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