bludit/bl-kernel/admin/controllers/settings-regional.php

35 lines
1.2 KiB
PHP
Raw Normal View History

2015-10-19 00:45:58 +02:00
<?php defined('BLUDIT') or die('Bludit CMS.');
// ============================================================================
// Check role
// ============================================================================
if($Login->role()!=='admin') {
Alert::set($Language->g('you-do-not-have-sufficient-permissions'));
Redirect::page('admin', 'dashboard');
}
// ============================================================================
// Functions
// ============================================================================
// ============================================================================
// Main after POST
// ============================================================================
// ============================================================================
// POST Method
// ============================================================================
if( $_SERVER['REQUEST_METHOD'] == 'POST' )
{
2017-07-26 21:00:20 +02:00
if (editSettings($_POST)) {
Alert::set($Language->g('the-changes-have-been-saved'));
Redirect::page('settings-regional');
}
2015-10-19 00:45:58 +02:00
}
// ============================================================================
// Main after POST
// ============================================================================