source: trunk/admin/configuration.php @ 8430

Last change on this file since 8430 was 8126, checked in by patdenice, 13 years ago

feature 2060: Remove adviser mode.
First commit: only php files.

  • Property svn:eol-style set to LF
File size: 9.9 KB
RevLine 
[362]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// +-----------------------------------------------------------------------+
[2]23
[527]24if( !defined("PHPWG_ROOT_PATH") )
[393]25{
[1072]26  die ("Hacking attempt!");
[393]27}
[527]28
[1072]29include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
[2226]30include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
[1072]31
32// +-----------------------------------------------------------------------+
33// | Check Access and exit when user status is not ok                      |
34// +-----------------------------------------------------------------------+
35check_status(ACCESS_ADMINISTRATOR);
36
[512]37//-------------------------------------------------------- sections definitions
38if (!isset($_GET['section']))
39{
[1894]40  $page['section'] = 'main';
[512]41}
42else
43{
44  $page['section'] = $_GET['section'];
45}
[1617]46
[1894]47$main_checkboxes = array(
[2249]48    'gallery_locked',
[2032]49    'allow_user_registration',
50    'obligatory_user_mail_address',
[1920]51    'rate',
52    'rate_anonymous',
[1652]53    'email_admin_on_new_user',
[5328]54    'allow_user_customization',
[1617]55   );
56
[1884]57$history_checkboxes = array(
58    'log',
59    'history_admin',
60    'history_guest'
61   );
62
[2325]63$upload_checkboxes = array(
64    'upload_link_everytime',
65    'email_admin_on_picture_uploaded',
66   );
67
[1617]68$comments_checkboxes = array(
69    'comments_forall',
70    'comments_validation',
71    'email_admin_on_comment',
72    'email_admin_on_comment_validation',
[3445]73    'user_can_delete_comment',
74    'user_can_edit_comment',
75    'email_admin_on_comment_edition',
76    'email_admin_on_comment_deletion'
[1617]77  );
78
[5293]79$display_checkboxes = array(
80    'menubar_filter_icon',
81    'index_sort_order_input',
82    'index_flat_icon',
83    'index_posted_date_icon',
84    'index_created_date_icon',
85    'index_slideshow_icon',
86    'picture_metadata_icon',
87    'picture_slideshow_icon',
88    'picture_favorite_icon',
[5618]89    'picture_download_icon',
[5293]90    'picture_navigation_icons',
91    'picture_navigation_thumb',
92  );
93
[5304]94$display_info_checkboxes = array(
95    'author',
96    'created_on',
97    'posted_on',
98    'dimensions',
99    'file',
100    'filesize',
101    'tags',
102    'categories',
103    'visits',
104    'average_rate',
[5723]105    'privacy_level',
[5304]106  );
107
[2]108//------------------------------ verification and registration of modifications
[8126]109if (isset($_POST['submit']))
[2]110{
[21]111  $int_pattern = '/^\d+$/';
[1926]112
[512]113  switch ($page['section'])
[2]114  {
[1894]115    case 'main' :
[130]116    {
[1894]117      foreach( $main_checkboxes as $checkbox)
[1617]118      {
119        $_POST[$checkbox] = empty($_POST[$checkbox])?'false':'true';
120      }
[512]121      break;
[130]122    }
[1884]123    case 'history' :
124    {
125      foreach( $history_checkboxes as $checkbox)
126      {
127        $_POST[$checkbox] = empty($_POST[$checkbox])?'false':'true';
128      }
129      break;
130    }
[512]131    case 'comments' :
132    {
133      // the number of comments per page must be an integer between 5 and 50
134      // included
135      if (!preg_match($int_pattern, $_POST['nb_comment_page'])
136           or $_POST['nb_comment_page'] < 5
137           or $_POST['nb_comment_page'] > 50)
138      {
[5021]139        array_push($page['errors'], l10n('The number of comments a page must be between 5 and 50 included.'));
[512]140      }
[1617]141      foreach( $comments_checkboxes as $checkbox)
142      {
143        $_POST[$checkbox] = empty($_POST[$checkbox])?'false':'true';
144      }
[512]145      break;
146    }
[2325]147    case 'upload' :
148    {
149      foreach( $upload_checkboxes as $checkbox)
150      {
151        $_POST[$checkbox] = empty($_POST[$checkbox])?'false':'true';
152      }
153      break;
154    }
[512]155    case 'default' :
156    {
[1926]157      // Never go here
[512]158      break;
159    }
[5293]160    case 'display' :
161    {
162      foreach( $display_checkboxes as $checkbox)
163      {
164        $_POST[$checkbox] = empty($_POST[$checkbox])?'false':'true';
165      }
[5304]166      foreach( $display_info_checkboxes as $checkbox)
167      {
168        $_POST['picture_informations'][$checkbox] =
169          empty($_POST['picture_informations'][$checkbox])? false : true;
170      }
171      $_POST['picture_informations'] = addslashes(serialize($_POST['picture_informations']));
[5293]172      break;
173    }
[2]174  }
[1071]175
[528]176  // updating configuration if no error found
[792]177  if (count($page['errors']) == 0)
[345]178  {
[1565]179    //echo '<pre>'; print_r($_POST); echo '</pre>';
[1748]180    $result = pwg_query('SELECT param FROM '.CONFIG_TABLE);
[4325]181    while ($row = pwg_db_fetch_assoc($result))
[512]182    {
183      if (isset($_POST[$row['param']]))
184      {
[882]185        $value = $_POST[$row['param']];
[1071]186
187        if ('gallery_title' == $row['param'])
[882]188        {
189          if (!$conf['allow_html_descriptions'])
190          {
191            $value = strip_tags($value);
192          }
193        }
[1071]194
[528]195        $query = '
196UPDATE '.CONFIG_TABLE.'
[1926]197SET value = \''. str_replace("\'", "''", $value).'\'
198WHERE param = \''.$row['param'].'\'
[528]199;';
[587]200        pwg_query($query);
[512]201      }
202    }
[5021]203    array_push($page['infos'], l10n('Information data registered in database'));
[345]204  }
[527]205
[1748]206  //------------------------------------------------------ $conf reinitialization
207  load_conf_from_db();
[1565]208}
209
[512]210//----------------------------------------------------- template initialization
[2530]211$template->set_filename('config', 'configuration.tpl');
[512]212
[2226]213// TabSheet
214$tabsheet = new tabsheet();
[1881]215// TabSheet initialization
[5021]216$tabsheet->add('main', l10n('Main'), $conf_link.'main');
[5293]217$tabsheet->add('display', l10n('Display'), $conf_link.'display');
[5021]218$tabsheet->add('history', l10n('History'), $conf_link.'history');
219$tabsheet->add('comments', l10n('Comments'), $conf_link.'comments');
[6365]220if ($conf['enable_synchronization'])
221{
222  $tabsheet->add('upload', l10n('Upload'), $conf_link.'upload');
223}
[5293]224$tabsheet->add('default', l10n('Guest Settings'), $conf_link.'default');
[2226]225// TabSheet selection
226$tabsheet->select($page['section']);
[1881]227// Assign tabsheet to template
[2226]228$tabsheet->assign();
[1881]229
[2249]230$action = get_root_url().'admin.php?page=configuration';
[528]231$action.= '&amp;section='.$page['section'];
[21]232
[2288]233$template->assign(
[528]234  array(
[5920]235    'U_HELP' => get_root_url().'admin/popuphelp.php?page=configuration',
[1004]236    'F_ACTION'=>$action
[528]237    ));
238
[527]239switch ($page['section'])
[528]240{
[1894]241  case 'main' :
[2]242  {
[2249]243    $template->assign(
[1894]244      'main',
[528]245      array(
[2021]246        'CONF_GALLERY_TITLE' => htmlspecialchars($conf['gallery_title']),
247        'CONF_PAGE_BANNER' => htmlspecialchars($conf['page_banner']),
[1044]248        'CONF_GALLERY_URL' => $conf['gallery_url'],
[528]249        ));
[1617]250
[2325]251    foreach ($main_checkboxes as $checkbox)
[1617]252    {
[2249]253      $template->append(
[1894]254          'main',
[1617]255          array(
[2249]256            $checkbox => $conf[$checkbox]
257            ),
258          true
[1617]259        );
260    }
[528]261    break;
262  }
[1884]263  case 'history' :
264  {
265    //Necessary for merge_block_vars
[2325]266    foreach ($history_checkboxes as $checkbox)
[1884]267    {
[2249]268      $template->append(
[1884]269          'history',
270          array(
[2249]271            $checkbox => $conf[$checkbox]
272            ),
273          true
[1884]274        );
275    }
276    break;
277  }
[528]278  case 'comments' :
279  {
[2249]280    $template->assign(
[528]281      'comments',
282      array(
283        'NB_COMMENTS_PAGE'=>$conf['nb_comment_page'],
284        ));
[1617]285
[2325]286    foreach ($comments_checkboxes as $checkbox)
[1617]287    {
[2249]288      $template->append(
[1617]289          'comments',
290          array(
[2249]291            $checkbox => $conf[$checkbox]
292            ),
293          true
[1617]294        );
295    }
[528]296    break;
297  }
[2325]298  case 'upload' :
299  {
300    $template->assign(
301      'upload',
302      array(
303        'upload_user_access_options'=> get_user_access_level_html_options(ACCESS_GUEST),
304        'upload_user_access_options_selected' => array($conf['upload_user_access'])
305        )
306      );
307    //Necessary for merge_block_vars
308    foreach ($upload_checkboxes as $checkbox)
309    {
310      $template->append(
311          'upload',
312          array(
313            $checkbox => $conf[$checkbox]
314            ),
315          true
316        );
317    }
318    break;
319  }
[528]320  case 'default' :
321  {
[5994]322    $edit_user = build_user($conf['guest_id'], false);
[1926]323    include_once(PHPWG_ROOT_PATH.'profile.php');
[1071]324
[1926]325    $errors = array();
[8126]326    if (save_profile_from_post($edit_user, $errors))
[858]327    {
[8126]328      // Reload user
329      $edit_user = build_user($conf['guest_id'], false);
330      array_push($page['infos'], l10n('Information data registered in database'));
[858]331    }
[1926]332    $page['errors'] = array_merge($page['errors'], $errors);
[541]333
[1926]334    load_profile_in_template(
335      $action,
336      '',
337      $edit_user
338      );
[2249]339    $template->assign('default', array());
[528]340    break;
341  }
[5293]342  case 'display' :
343  {
344    foreach ($display_checkboxes as $checkbox)
345    {
346      $template->append(
347          'display',
348          array(
349            $checkbox => $conf[$checkbox]
350            ),
351          true
352        );
353    }
[5304]354    $template->append(
355        'display',
356        array(
357          'picture_informations' => unserialize($conf['picture_informations'])
358          ),
359        true
360      );
[5293]361    break;
362  }
[528]363}
[1926]364
[2]365//----------------------------------------------------------- sending html code
[393]366$template->assign_var_from_handle('ADMIN_CONTENT', 'config');
[362]367?>
Note: See TracBrowser for help on using the repository browser.