source: trunk/admin/configuration.php @ 1617

Last change on this file since 1617 was 1617, checked in by rvelices, 17 years ago

feature 440: send mail to admin when comment is entered

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.5 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2006 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | branch        : BSF (Best So Far)
8// | file          : $RCSfile$
9// | last update   : $Date: 2006-11-22 04:41:25 +0000 (Wed, 22 Nov 2006) $
10// | last modifier : $Author: rvelices $
11// | revision      : $Revision: 1617 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27
28if( !defined("PHPWG_ROOT_PATH") )
29{
30  die ("Hacking attempt!");
31}
32
33include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
34
35// +-----------------------------------------------------------------------+
36// | Check Access and exit when user status is not ok                      |
37// +-----------------------------------------------------------------------+
38check_status(ACCESS_ADMINISTRATOR);
39
40//-------------------------------------------------------- sections definitions
41if (!isset($_GET['section']))
42{
43  $page['section'] = 'general';
44}
45else
46{
47  $page['section'] = $_GET['section'];
48}
49
50$general_checkboxes = array(
51    'log',
52    'history_admin',
53    'history_guest',
54    'login_history',
55    'email_admin_on_new_user'
56   );
57
58$comments_checkboxes = array(
59    'comments_forall',
60    'comments_validation',
61    'email_admin_on_comment',
62    'email_admin_on_comment_validation',
63  );
64
65//------------------------------ verification and registration of modifications
66if (isset($_POST['submit']) and !is_adviser())
67{
68  $int_pattern = '/^\d+$/';
69  switch ($page['section'])
70  {
71    case 'general' :
72    {
73      if ( !url_is_remote($_POST['gallery_url']) )
74      {
75        array_push($page['errors'], $lang['conf_gallery_url_error']);
76      }
77      foreach( $general_checkboxes as $checkbox)
78      {
79        $_POST[$checkbox] = empty($_POST[$checkbox])?'false':'true';
80      }
81      break;
82    }
83    case 'comments' :
84    {
85      // the number of comments per page must be an integer between 5 and 50
86      // included
87      if (!preg_match($int_pattern, $_POST['nb_comment_page'])
88           or $_POST['nb_comment_page'] < 5
89           or $_POST['nb_comment_page'] > 50)
90      {
91        array_push($page['errors'], $lang['conf_nb_comment_page_error']);
92      }
93      foreach( $comments_checkboxes as $checkbox)
94      {
95        $_POST[$checkbox] = empty($_POST[$checkbox])?'false':'true';
96      }
97      break;
98    }
99    case 'default' :
100    {
101      // periods must be integer values, they represents number of days
102      if (!preg_match($int_pattern, $_POST['recent_period'])
103          or $_POST['recent_period'] <= 0)
104      {
105        array_push($page['errors'], $lang['periods_error']);
106      }
107      // maxwidth
108      if (isset($_POST['default_maxwidth'])
109          and !empty($_POST['default_maxwidth'])
110          and (!preg_match($int_pattern, $_POST['default_maxwidth'])
111               or $_POST['default_maxwidth'] < 50))
112      {
113        array_push($page['errors'], $lang['maxwidth_error']);
114      }
115      // maxheight
116      if (isset($_POST['default_maxheight'])
117          and !empty($_POST['default_maxheight'])
118          and (!preg_match($int_pattern, $_POST['default_maxheight'])
119               or $_POST['default_maxheight'] < 50))
120      {
121        array_push($page['errors'], $lang['maxheight_error']);
122      }
123      break;
124    }
125  }
126
127  // updating configuration if no error found
128  if (count($page['errors']) == 0)
129  {
130    //echo '<pre>'; print_r($_POST); echo '</pre>';
131    $result = pwg_query('SELECT * FROM '.CONFIG_TABLE);
132    while ($row = mysql_fetch_array($result))
133    {
134      if (isset($_POST[$row['param']]))
135      {
136        $value = $_POST[$row['param']];
137
138        if ('gallery_title' == $row['param'])
139        {
140          if (!$conf['allow_html_descriptions'])
141          {
142            $value = strip_tags($value);
143          }
144        }
145
146        $query = '
147UPDATE '.CONFIG_TABLE.'
148  SET value = \''. str_replace("\'", "''", $value).'\'
149  WHERE param = \''.$row['param'].'\'
150;';
151        pwg_query($query);
152      }
153    }
154    array_push($page['infos'], $lang['conf_confirmation']);
155  }
156}
157
158//------------------------------------------------------ $conf reinitialization
159$result = pwg_query('SELECT param,value FROM '.CONFIG_TABLE);
160while ($row = mysql_fetch_array($result))
161{
162  $conf[$row['param']] = $row['value'];
163}
164
165//----------------------------------------------------- template initialization
166$template->set_filenames( array('config'=>'admin/configuration.tpl') );
167
168$action = PHPWG_ROOT_PATH.'admin.php?page=configuration';
169$action.= '&amp;section='.$page['section'];
170
171$template->assign_vars(
172  array(
173    'L_YES'=>$lang['yes'],
174    'L_NO'=>$lang['no'],
175    'L_SUBMIT'=>$lang['submit'],
176    'L_RESET'=>$lang['reset'],
177
178    'U_HELP' => PHPWG_ROOT_PATH.'popuphelp.php?page=configuration',
179
180    'F_ACTION'=>$action
181    ));
182
183$html_check='checked="checked"';
184
185switch ($page['section'])
186{
187  case 'general' :
188  {
189    $lock_yes = ($conf['gallery_locked']=='true')?'checked="checked"':'';
190    $lock_no = ($conf['gallery_locked']=='false')?'checked="checked"':'';
191
192    $template->assign_block_vars(
193      'general',
194      array(
195        'GALLERY_LOCKED_YES'=>$lock_yes,
196        'GALLERY_LOCKED_NO'=>$lock_no,
197        ($conf['rate']=='true'?'RATE_YES':'RATE_NO')=>$html_check,
198        ($conf['rate_anonymous']=='true'
199             ? 'RATE_ANONYMOUS_YES' : 'RATE_ANONYMOUS_NO')=>$html_check,
200        'CONF_GALLERY_TITLE' => $conf['gallery_title'],
201        'CONF_PAGE_BANNER' => $conf['page_banner'],
202        'CONF_GALLERY_URL' => $conf['gallery_url'],
203        ));
204
205    foreach( $general_checkboxes as $checkbox)
206    {
207      $template->merge_block_vars(
208          'general',
209          array(
210            strtoupper($checkbox) => ($conf[$checkbox]=='true')?$html_check:''
211            )
212        );
213    }
214    break;
215  }
216  case 'comments' :
217  {
218    $template->assign_block_vars(
219      'comments',
220      array(
221        'NB_COMMENTS_PAGE'=>$conf['nb_comment_page'],
222        ));
223
224    foreach( $comments_checkboxes as $checkbox)
225    {
226      $template->merge_block_vars(
227          'comments',
228          array(
229            strtoupper($checkbox) => ($conf[$checkbox]=='true')?$html_check:''
230            )
231        );
232    }
233    break;
234  }
235  case 'default' :
236  {
237    $show_yes = ($conf['show_nb_comments']=='true')?'checked="checked"':'';
238    $show_no = ($conf['show_nb_comments']=='false')?'checked="checked"':'';
239    $expand_yes = ($conf['auto_expand']=='true')?'checked="checked"':'';
240    $expand_no  = ($conf['auto_expand']=='false')?'checked="checked"':'';
241
242    $template->assign_block_vars(
243      'default',
244      array(
245        'NB_IMAGE_LINE'=>$conf['nb_image_line'],
246        'NB_ROW_PAGE'=>$conf['nb_line_page'],
247        'CONF_RECENT'=>$conf['recent_period'],
248        'NB_COMMENTS_PAGE'=>$conf['nb_comment_page'],
249        'MAXWIDTH'=>$conf['default_maxwidth'],
250        'MAXHEIGHT'=>$conf['default_maxheight'],
251        'EXPAND_YES'=>$expand_yes,
252        'EXPAND_NO'=>$expand_no,
253        'SHOW_COMMENTS_YES'=>$show_yes,
254        'SHOW_COMMENTS_NO'=>$show_no
255        ));
256
257    $blockname = 'default.language_option';
258
259    foreach (get_languages() as $language_code => $language_name)
260    {
261      if (isset($_POST['submit']))
262      {
263        $selected =
264          $_POST['default_language'] == $language_code
265            ? 'selected="selected"' : '';
266      }
267      else if ($conf['default_language'] == $language_code)
268      {
269        $selected = 'selected="selected"';
270      }
271      else
272      {
273        $selected = '';
274      }
275
276      $template->assign_block_vars(
277        $blockname,
278        array(
279          'VALUE'=> $language_code,
280          'CONTENT' => $language_name,
281          'SELECTED' => $selected
282          ));
283    }
284
285    $blockname = 'default.template_option';
286
287    foreach (get_pwg_themes() as $pwg_template)
288    {
289      if (isset($_POST['submit']))
290      {
291        $selected =
292          $_POST['default_template'] == $pwg_template
293            ? 'selected="selected"' : '';
294      }
295      else if ($conf['default_template'] == $pwg_template)
296      {
297        $selected = 'selected="selected"';
298      }
299      else
300      {
301        $selected = '';
302      }
303
304      $template->assign_block_vars(
305        $blockname,
306        array(
307          'VALUE'=> $pwg_template,
308          'CONTENT' => $pwg_template,
309          'SELECTED' => $selected
310          )
311        );
312    }
313
314
315    break;
316  }
317}
318//----------------------------------------------------------- sending html code
319$template->assign_var_from_handle('ADMIN_CONTENT', 'config');
320?>
Note: See TracBrowser for help on using the repository browser.