bludit/admin/controllers/edit-user.php

63 lines
1.4 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
// ============================================================================
// Functions
// ============================================================================
2015-05-05 01:00:01 +00:00
function editUser($args)
{
global $dbUsers;
if(isset($args['password']))
{
2015-05-30 22:06:55 -03:00
if( ($args['password']===$args['confirm-password']) && !Text::isEmpty($args['password']) ) {
2015-06-09 19:55:23 -03:00
return $dbUsers->setPassword($args);
2015-05-05 01:00:01 +00:00
}
else {
Alert::set('Passwords are differents.');
return false;
}
}
else
{
return $dbUsers->set($args);
}
}
2015-05-14 22:07:45 +00:00
// ============================================================================
// POST Method
// ============================================================================
2015-05-05 01:00:01 +00:00
if( $_SERVER['REQUEST_METHOD'] == 'POST' )
{
2015-05-14 22:07:45 +00:00
if($Login->role()!=='admin')
{
$_POST['username'] = $Login->username();
unset($_POST['role']);
}
2015-05-05 01:00:01 +00:00
if( editUser($_POST) ) {
Alert::set('User saved successfuly.');
}
2015-05-14 22:07:45 +00:00
}
// ============================================================================
// Main
// ============================================================================
if($Login->role()!=='admin') {
$layout['parameters'] = $Login->username();
2015-05-05 01:00:01 +00:00
}
$_user = $dbUsers->get($layout['parameters']);
// If the user doesn't exist, redirect to the users list.
2015-05-14 22:07:45 +00:00
if($_user===false) {
Redirect::page('admin', 'users');
}
2015-05-30 22:06:55 -03:00
$_user['username'] = $layout['parameters'];