bludit/admin/controllers/add-user.php

61 lines
1.7 KiB
PHP
Raw Normal View History

2015-05-05 03:00:01 +02:00
<?php defined('BLUDIT') or die('Bludit CMS.');
2015-05-15 00:07:45 +02:00
// ============================================================================
// Check role
// ============================================================================
if($Login->role()!=='admin') {
Alert::set('You do not have sufficient permissions to access this page, contact the administrator.');
Redirect::page('admin', 'dashboard');
}
2015-05-05 03:00:01 +02:00
// ============================================================================
// Functions
// ============================================================================
function addUser($args)
{
global $dbUsers;
// Check if the username already exist in db.
2015-05-31 03:06:55 +02:00
if( $dbUsers->userExists($args['username']) || Text::isEmpty($args['username']) )
2015-05-05 03:00:01 +02:00
{
Alert::set('Username already exists or is empty');
return false;
}
// Validate password.
2015-05-31 03:06:55 +02:00
if( ($args['password'] != $args['confirm-password'] ) || Text::isEmpty($args['password']) )
2015-05-05 03:00:01 +02:00
{
Alert::set('The password and confirmation password do not match');
return false;
}
// Add the user.
if( $dbUsers->add($args) )
{
Alert::set('User has been added successfull');
return true;
}
else
{
Alert::set('Error occurred when trying to add a new user');
return false;
}
}
// ============================================================================
// POST Method
// ============================================================================
if( $_SERVER['REQUEST_METHOD'] == 'POST' )
{
if( addUser($_POST) ) {
Redirect::page('admin', 'users');
}
}
2015-05-15 00:07:45 +02:00
// ============================================================================
// Main
// ============================================================================