| Server IP : 74.208.250.37 / Your IP : 216.73.216.114 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : miferval ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/aprendizajeodisea/admin/controller/ |
Upload File : |
<?php
Class AdminControllerUser extends Controller
{
protected $router;
protected $registry;
public function __construct($registry,$router){
$this->router = $router;
$this->registry = $registry;
$this->rol_id = $registry->get('rol_id');
$this->user_id = $registry->get('user_id');
$this->users = new ModelUser($this->registry);
}
public function index(){
$users_list = $this->users->usersList($this->rol_id);
if($this->rol_id <= 2){
include TEMPLATE_ADMIN_FOLDER.'/user/users.php';
}else{
echo '<div class="alert alert-danger center">No cuentas con los permisos necesarios para ver esta página</div>';
}
}
public function edit(){
if($_SESSION['admin']['id'] == $this->router['id'] || $this->rol_id <= 2){
//USER
$user = $this->users->getUser($this->router['id'])->row;
$roles = $this->users->getRoles($this->rol_id);
!empty($user['image']) ? $image = $user['image'] : $image = '';
include TEMPLATE_ADMIN_FOLDER.'/user/edit_user.php';
}else{
echo '<div class="alert alert-danger center">No cuentas con los permisos necesarios para ver esta página</div>';
}
}
public function add(){
//ROLES
$roles = $this->users->getRoles($this->rol_id);
include TEMPLATE_ADMIN_FOLDER.'/user/add_user.php';
}
}