koblog/bl-kernel/admin/controllers/edit-user.php

29 lines
896 B
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
// ============================================================================
// Authorization
2015-05-15 00:07:45 +02:00
// ============================================================================
2015-08-03 02:49:12 +02:00
// ============================================================================
// Functions
2015-05-15 00:07:45 +02:00
// ============================================================================
// ============================================================================
// Main
2015-05-15 00:07:45 +02: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 03:00:01 +02:00
}
2018-07-25 23:42:00 +02:00
try {
$user = new User($username);
} catch (Exception $e) {
Redirect::page('users');
2015-05-15 00:07:45 +02:00
}
// HTML <title>
$layout['title'] = $L->g('Edit user') . ' - ' . $layout['title'];