32 lines
1.1 KiB
PHP
Raw Normal View History

2015-05-05 01:00:01 +00:00
<?php defined('BLUDIT') or die('Bludit CMS.');
2015-05-14 22:07:45 +00:00
// ============================================================================
// Check role
// ============================================================================
2018-05-20 21:48:43 +02:00
checkRole(array('admin'));
2015-05-14 22:07:45 +00:00
2015-05-05 01:00:01 +00:00
// ============================================================================
// Functions
// ============================================================================
2015-08-02 21:49:12 -03:00
// ============================================================================
// Main before POST
// ============================================================================
2015-05-05 01:00:01 +00:00
// ============================================================================
// POST Method
// ============================================================================
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
if (createUser($_POST)) {
Redirect::page('users');
2015-05-05 01:00:01 +00:00
}
}
2015-05-14 22:07:45 +00:00
// ============================================================================
2015-08-02 21:49:12 -03:00
// Main after POST
2015-05-14 22:07:45 +00:00
// ============================================================================
// Title of the page
$layout['title'] .= ' - '.$L->g('Add a new user');