Add files via upload

This commit is contained in:
Fernando Méndez
2021-05-03 16:51:08 +02:00
committed by GitHub
parent 4c3fccca92
commit ac2b2cfee0
5 changed files with 16 additions and 14 deletions

View File

@ -6,7 +6,7 @@
//Controller file:
include_once('panelUser.php');
if($_SESSION["login"]){
if($_SESSION["login"] && $_SESSION["rol"] === "user"){
switch($_GET["option"]){
case "manage_profile":
$reply = UserPanel::manage();
@ -63,7 +63,7 @@
<div class="row">
<!-- Panel Menu -->
<?php
$template->print_panelMenu("user");
$template->print_panelMenu($_SESSION["rol"]);
?>
<!-- Contents -->
<div class="row">

View File

@ -1,5 +1,5 @@
<?php
require_once('../assets/php/common/user_dto.php');
require_once($prefix.'assets/php/common/user_dto.php');
class UserPanel {
//Atributes: