Seditio Source
Root |
./othercms/b2evolution_7.2.3/inc/regional/time.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 https://github.com/b2evolution/b2evolution}.
 *
 * @license GNU GPL v2 - {@link http://b2evolution.net/about/gnu-gpl-license}
 *
 * @copyright (c)2003-2020 by Francois Planque - {@link http://fplanque.com/}
 * Parts of this file are copyright (c)2004-2006 by Daniel HAHLER - {@link http://thequod.de/contact}.
 *
 * @package admin
 */
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );

// Check minimum permission:
check_user_perm( 'admin', 'normal', true );
check_user_perm( 'options', 'view', true );

// Memorize this as the last "tab" used in the Global Settings:
$UserSettings->set( 'pref_glob_settings_tab', $ctrl );
$UserSettings->set( 'pref_glob_regional_tab', $ctrl );
$UserSettings->dbupdate();

$AdminUI->set_path( 'options', 'regional', 'time' );

param( 'action', 'string' );
param( 'edit_locale', 'string' );
param( 'loc_transinfo', 'integer', 0 );

// Load all available locale defintions:
locales_load_available_defs();

switch(
$action )
{
    case
'update':
       
// UPDATE regional settings

        // Check that this action request is not a CSRF hacked request:
       
$Session->assert_received_crumb( 'time' );

       
// Check permission:
       
check_user_perm( 'options', 'edit', true );

       
param( 'newtime_difference', 'string', '' );
       
$newtime_difference = trim($newtime_difference);
        if(
$newtime_difference == '' )
        {
           
$newtime_difference = 0;
        }
        if(
strpos($newtime_difference, ':') !== false )
        {
// hh:mm:ss format:
           
$ntd = explode(':', $newtime_difference);
            if(
count($ntd) > 3 )
            {
               
param_error( 'newtime_difference', TB_('Invalid time format.') );
            }
            else
            {
               
$newtime_difference = $ntd[0]*3600 + ($ntd[1]*60);

                if(
count($ntd) == 3 )
                {
// add seconds:
                   
$newtime_difference += $ntd[2];
                }
            }
        }
        else
        {
// just hours:
           
$newtime_difference = $newtime_difference*3600;
        }

       
$Settings->set( 'time_difference', $newtime_difference );

        if( !
$Messages->has_errors() )
        {
           
$Settings->dbupdate();
           
$Messages->add( TB_('Time settings updated.'), 'success' );
           
// Redirect so that a reload doesn't write to the DB twice:
           
header_redirect( '?ctrl=time', 303 ); // Will EXIT
            // We have EXITed already at this point!!
       
}

        break;

}

$AdminUI->breadcrumbpath_init( false );
$AdminUI->breadcrumbpath_add( TB_('System'), $admin_url.'?ctrl=system',
       
TB_('Global settings are shared between all blogs; see Blog settings for more granular settings.') );
$AdminUI->breadcrumbpath_add( TB_('Regional'), $admin_url.'?ctrl=locales' );
$AdminUI->breadcrumbpath_add( TB_('Time'), $admin_url.'?ctrl=time' );

// Set an url for manual page:
$AdminUI->set_page_manual_link( 'regional-time-tab' );

// 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( 'regional/views/_time.form.php' );

// End payload block:
$AdminUI->disp_payload_end();

// Display body bottom, debug info and close </html>:
$AdminUI->disp_global_footer();

?>