source: trunk/admin/configuration.php @ 5920

Last change on this file since 5920 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: 10.0 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2010 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//-------------------------------------------------------- sections definitions
38if (!isset($_GET['section']))
39{
40  $page['section'] = 'main';
41}
42else
43{
44  $page['section'] = $_GET['section'];
45}
46
47$main_checkboxes = array(
48    'gallery_locked',
49    'allow_user_registration',
50    'obligatory_user_mail_address',
51    'rate',
52    'rate_anonymous',
53    'email_admin_on_new_user',
54    'allow_user_customization',
55   );
56
57$history_checkboxes = array(
58    'log',
59    'history_admin',
60    'history_guest'
61   );
62
63$upload_checkboxes = array(
64    'upload_link_everytime',
65    'email_admin_on_picture_uploaded',
66   );
67
68$comments_checkboxes = array(
69    'comments_forall',
70    'comments_validation',
71    'email_admin_on_comment',
72    'email_admin_on_comment_validation',
73    'user_can_delete_comment',
74    'user_can_edit_comment',
75    'email_admin_on_comment_edition',
76    'email_admin_on_comment_deletion'
77  );
78
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',
89    'picture_download_icon',
90    'picture_navigation_icons',
91    'picture_navigation_thumb',
92  );
93
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',
105    'privacy_level',
106  );
107
108//------------------------------ verification and registration of modifications
109if (isset($_POST['submit']) and !is_adviser())
110{
111  $int_pattern = '/^\d+$/';
112
113  switch ($page['section'])
114  {
115    case 'main' :
116    {
117      if ( !url_is_remote($_POST['gallery_url']) )
118      {
119        array_push($page['errors'], l10n('The gallery URL is not valid.'));
120      }
121      foreach( $main_checkboxes as $checkbox)
122      {
123        $_POST[$checkbox] = empty($_POST[$checkbox])?'false':'true';
124      }
125      break;
126    }
127    case 'history' :
128    {
129      foreach( $history_checkboxes as $checkbox)
130      {
131        $_POST[$checkbox] = empty($_POST[$checkbox])?'false':'true';
132      }
133      break;
134    }
135    case 'comments' :
136    {
137      // the number of comments per page must be an integer between 5 and 50
138      // included
139      if (!preg_match($int_pattern, $_POST['nb_comment_page'])
140           or $_POST['nb_comment_page'] < 5
141           or $_POST['nb_comment_page'] > 50)
142      {
143        array_push($page['errors'], l10n('The number of comments a page must be between 5 and 50 included.'));
144      }
145      foreach( $comments_checkboxes as $checkbox)
146      {
147        $_POST[$checkbox] = empty($_POST[$checkbox])?'false':'true';
148      }
149      break;
150    }
151    case 'upload' :
152    {
153      foreach( $upload_checkboxes as $checkbox)
154      {
155        $_POST[$checkbox] = empty($_POST[$checkbox])?'false':'true';
156      }
157      break;
158    }
159    case 'default' :
160    {
161      // Never go here
162      break;
163    }
164    case 'display' :
165    {
166      foreach( $display_checkboxes as $checkbox)
167      {
168        $_POST[$checkbox] = empty($_POST[$checkbox])?'false':'true';
169      }
170      foreach( $display_info_checkboxes as $checkbox)
171      {
172        $_POST['picture_informations'][$checkbox] =
173          empty($_POST['picture_informations'][$checkbox])? false : true;
174      }
175      $_POST['picture_informations'] = addslashes(serialize($_POST['picture_informations']));
176      break;
177    }
178  }
179
180  // updating configuration if no error found
181  if (count($page['errors']) == 0)
182  {
183    //echo '<pre>'; print_r($_POST); echo '</pre>';
184    $result = pwg_query('SELECT param FROM '.CONFIG_TABLE);
185    while ($row = pwg_db_fetch_assoc($result))
186    {
187      if (isset($_POST[$row['param']]))
188      {
189        $value = $_POST[$row['param']];
190
191        if ('gallery_title' == $row['param'])
192        {
193          if (!$conf['allow_html_descriptions'])
194          {
195            $value = strip_tags($value);
196          }
197        }
198
199        $query = '
200UPDATE '.CONFIG_TABLE.'
201SET value = \''. str_replace("\'", "''", $value).'\'
202WHERE param = \''.$row['param'].'\'
203;';
204        pwg_query($query);
205      }
206    }
207    array_push($page['infos'], l10n('Information data registered in database'));
208  }
209
210  //------------------------------------------------------ $conf reinitialization
211  load_conf_from_db();
212}
213
214//----------------------------------------------------- template initialization
215$template->set_filename('config', 'configuration.tpl');
216
217// TabSheet
218$tabsheet = new tabsheet();
219// TabSheet initialization
220$tabsheet->add('main', l10n('Main'), $conf_link.'main');
221$tabsheet->add('display', l10n('Display'), $conf_link.'display');
222$tabsheet->add('history', l10n('History'), $conf_link.'history');
223$tabsheet->add('comments', l10n('Comments'), $conf_link.'comments');
224$tabsheet->add('upload', l10n('Upload'), $conf_link.'upload');
225$tabsheet->add('default', l10n('Guest Settings'), $conf_link.'default');
226// TabSheet selection
227$tabsheet->select($page['section']);
228// Assign tabsheet to template
229$tabsheet->assign();
230
231$action = get_root_url().'admin.php?page=configuration';
232$action.= '&amp;section='.$page['section'];
233
234$template->assign(
235  array(
236    'U_HELP' => get_root_url().'admin/popuphelp.php?page=configuration',
237    'F_ACTION'=>$action
238    ));
239
240switch ($page['section'])
241{
242  case 'main' :
243  {
244    $template->assign(
245      'main',
246      array(
247        'CONF_GALLERY_TITLE' => htmlspecialchars($conf['gallery_title']),
248        'CONF_PAGE_BANNER' => htmlspecialchars($conf['page_banner']),
249        'CONF_GALLERY_URL' => $conf['gallery_url'],
250        ));
251
252    foreach ($main_checkboxes as $checkbox)
253    {
254      $template->append(
255          'main',
256          array(
257            $checkbox => $conf[$checkbox]
258            ),
259          true
260        );
261    }
262    break;
263  }
264  case 'history' :
265  {
266    //Necessary for merge_block_vars
267    foreach ($history_checkboxes as $checkbox)
268    {
269      $template->append(
270          'history',
271          array(
272            $checkbox => $conf[$checkbox]
273            ),
274          true
275        );
276    }
277    break;
278  }
279  case 'comments' :
280  {
281    $template->assign(
282      'comments',
283      array(
284        'NB_COMMENTS_PAGE'=>$conf['nb_comment_page'],
285        ));
286
287    foreach ($comments_checkboxes as $checkbox)
288    {
289      $template->append(
290          'comments',
291          array(
292            $checkbox => $conf[$checkbox]
293            ),
294          true
295        );
296    }
297    break;
298  }
299  case 'upload' :
300  {
301    $template->assign(
302      'upload',
303      array(
304        'upload_user_access_options'=> get_user_access_level_html_options(ACCESS_GUEST),
305        'upload_user_access_options_selected' => array($conf['upload_user_access'])
306        )
307      );
308    //Necessary for merge_block_vars
309    foreach ($upload_checkboxes as $checkbox)
310    {
311      $template->append(
312          'upload',
313          array(
314            $checkbox => $conf[$checkbox]
315            ),
316          true
317        );
318    }
319    break;
320  }
321  case 'default' :
322  {
323    $edit_user = build_user($conf['default_user_id'], false);
324    include_once(PHPWG_ROOT_PATH.'profile.php');
325
326    $errors = array();
327    if ( !is_adviser() )
328    {
329      if (save_profile_from_post($edit_user, $errors))
330      {
331        // Reload user
332        $edit_user = build_user($conf['default_user_id'], false);
333        array_push($page['infos'], l10n('Information data registered in database'));
334      }
335    }
336    $page['errors'] = array_merge($page['errors'], $errors);
337
338    load_profile_in_template(
339      $action,
340      '',
341      $edit_user
342      );
343    $template->assign('default', array());
344    break;
345  }
346  case 'display' :
347  {
348    foreach ($display_checkboxes as $checkbox)
349    {
350      $template->append(
351          'display',
352          array(
353            $checkbox => $conf[$checkbox]
354            ),
355          true
356        );
357    }
358    $template->append(
359        'display',
360        array(
361          'picture_informations' => unserialize($conf['picture_informations'])
362          ),
363        true
364      );
365    break;
366  }
367}
368
369//----------------------------------------------------------- sending html code
370$template->assign_var_from_handle('ADMIN_CONTENT', 'config');
371?>
Note: See TracBrowser for help on using the repository browser.