0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
b2evolution
/
4.0.5-0
/
standard
/
htdocs
/
inc
/
settings
/
[
Home
]
File: settings.ctrl.php
<?php /** * This file implements the UI controller for settings management. * * This file is part of the evoCore framework - {@link http://evocore.net/} * See also {@link http://sourceforge.net/projects/evocms/}. * * @copyright (c)2003-2010 by Francois PLANQUE - {@link http://fplanque.net/} * Parts of this file are copyright (c)2004-2006 by Daniel HAHLER - {@link http://thequod.de/contact}. * * {@internal License choice * - If you have received this file as part of a package, please find the license.txt file in * the same folder or the closest folder above for complete license terms. * - If you have received this file individually (e-g: from http://evocms.cvs.sourceforge.net/) * then you must choose one of the following licenses before using the file: * - GNU General Public License 2 (GPL) - http://www.opensource.org/licenses/gpl-license.php * - Mozilla Public License 1.1 (MPL) - http://www.opensource.org/licenses/mozilla1.1.php * }} * * {@internal Open Source relicensing agreement: * Daniel HAHLER grants Francois PLANQUE the right to license * Daniel HAHLER's contributions to this file and the b2evolution project * under any OSI approved OSS license (http://www.opensource.org/licenses/). * }} * * @package admin * * {@internal Below is a list of authors who have contributed to design/coding of this file: }} * @author blueyed: Daniel HAHLER * @author fplanque: Francois PLANQUE * * @version $Id: settings.ctrl.php,v 1.22.2.1 2010/06/24 07:02:37 efy-asimo Exp $ */ if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' ); // Check minimum permission: $current_User->check_perm( 'options', 'view', true ); $AdminUI->set_path( 'options', 'general' ); param( 'action', 'string' ); switch( $action ) { case 'update': // UPDATE general settings: // Check that this action request is not a CSRF hacked request: $Session->assert_received_crumb( 'globalsettings' ); // Check permission: $current_User->check_perm( 'options', 'edit', true ); if( param( 'default_blog_ID', 'integer', NULL ) !== NULL ) { $Settings->set( 'default_blog_ID', $default_blog_ID ); } // Session timeout $timeout_sessions = param_duration( 'timeout_sessions' ); if( $timeout_sessions < 300 ) { // lower than 5 minutes: not allowed param_error( 'timeout_sessions', sprintf( T_( 'You cannot set a session timeout below %d seconds.' ), 300 ) ); } elseif( $timeout_sessions < 86400 ) { // lower than 1 day: notice/warning $Messages->add( sprintf( T_( 'Warning: your session timeout is just %d seconds. Your users may have to re-login often!' ), $timeout_sessions ), 'note' ); } $Settings->set( 'timeout_sessions', $timeout_sessions ); // Reload page timeout $reloadpage_timeout = param_duration( 'reloadpage_timeout' ); if( $reloadpage_timeout > 99999 ) { param_error( 'reloadpage_timeout', sprintf( T_( 'Reload-page timeout must be between %d and %d seconds.' ), 0, 99999 ) ); } $Settings->set( 'reloadpage_timeout', $reloadpage_timeout ); $new_cache_status = param( 'general_cache_enabled', 'integer', 0 ); $old_cache_status = $Settings->get('general_cache_enabled'); load_class( '_core/model/_pagecache.class.php', 'PageCache' ); $PageCache = new PageCache(); if( $old_cache_status == false && $new_cache_status == true ) { // Caching has been turned ON: if( $PageCache->cache_create() ) { $Messages->add( T_('General caching has been enabled.'), 'success' ); } else { $Messages->add( T_('General caching could not be enabled. Check /cache/ folder file permissions.'), 'error' ); $new_cache_status = 0; } } elseif( $old_cache_status == true && $new_cache_status == false ) { // Caching has been turned OFF: $PageCache->cache_delete(); $Messages->add( T_('General caching has been disabled. All general cache contents have been purged.'), 'note' ); } $Settings->set( 'general_cache_enabled', $new_cache_status ); if( ! $Messages->count('error') ) { $Settings->dbupdate(); $Messages->add( T_('General settings updated.'), 'success' ); // Redirect so that a reload doesn't write to the DB twice: header_redirect( '?ctrl=settings', 303 ); // Will EXIT // We have EXITed already at this point!! } break; } $AdminUI->breadcrumbpath_init(); $AdminUI->breadcrumbpath_add( T_('Global settings'), '?ctrl=settings', T_('Global settings are shared between all blogs; see Blog settings for more granular settings.') ); $AdminUI->breadcrumbpath_add( T_('General'), '?ctrl=settings' ); // Display <html><head>...</head> section! (Note: should be done early if actions do not redirect) $AdminUI->disp_html_head(); // Display title, menu, messages, etc. (Note: messages MUST be displayed AFTER the actions) $AdminUI->disp_body_top(); // Begin payload block: $AdminUI->disp_payload_begin(); // Display VIEW: $AdminUI->disp_view( 'settings/views/_general.form.php' ); // End payload block: $AdminUI->disp_payload_end(); // Display body bottom, debug info and close </html>: $AdminUI->disp_global_footer(); /* * $Log: settings.ctrl.php,v $ */ ?>