56 lines
1.7 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-08-02 21:49:12 -03:00
// ============================================================================
// Main before POST
// ============================================================================
2015-05-14 22:07:45 +00:00
// ============================================================================
// POST Method
// ============================================================================
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
// Prevent non-administrators to change other users
if ($login->role()!=='admin') {
$_POST['username'] = $login->username();
2015-05-14 22:07:45 +00:00
unset($_POST['role']);
}
2018-05-14 00:00:10 +02:00
if (isset($_POST['deleteUserAndDeleteContent'])) {
$_POST['deleteContent'] = true;
deleteUser($_POST);
} elseif (isset($_POST['deleteUserAndKeepContent'])) {
$_POST['deleteContent'] = false;
deleteUser($_POST);
} elseif (isset($_POST['disableUser'])) {
disableUser(array('username'=>$_POST['username']));
} else {
2015-07-22 00:15:02 -03:00
editUser($_POST);
2015-05-05 01:00:01 +00:00
}
Alert::set($L->g('The changes have been saved'));
2018-05-14 00:00:10 +02:00
Redirect::page('users');
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
// ============================================================================
2018-07-25 23:42:00 +02:00
$username = $layout['parameters'];
// Prevent non-administrators to change other users
if ($login->role()!=='admin') {
2018-07-25 23:42:00 +02:00
$username = $login->username();
2015-05-05 01:00:01 +00:00
}
2018-07-25 23:42:00 +02:00
try {
$user = new User($username);
} catch (Exception $e) {
Redirect::page('users');
2015-05-14 22:07:45 +00:00
}
// Title of the page
$layout['title'] = $L->g('Edit user').' - '.$layout['title'];