mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
167 lines
6.8 KiB
PHP
Executable File
167 lines
6.8 KiB
PHP
Executable File
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
use App\Models\ActivityModel;
|
|
use App\Models\Usuarios\UserModel;
|
|
|
|
class Home extends BaseController
|
|
{
|
|
private $user_model;
|
|
private $activity_model;
|
|
|
|
function __construct()
|
|
{
|
|
$this->user_model = new UserModel();
|
|
$this->activity_model = new ActivityModel();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
|
|
$session = session();
|
|
$id_user = $session->get('id_user');
|
|
$name = $session->get('first_name');
|
|
$hora = date('H');
|
|
|
|
//Salutation
|
|
if( $hora >= 6 && $hora <= 12 )
|
|
$salutation = lang("App.dashboard_good_morning");
|
|
else if ( $hora > 12 && $hora <=18 )
|
|
$salutation = lang("App.dashboard_good_afternoon");
|
|
else
|
|
$salutation = lang("App.dashboard_good_night");
|
|
|
|
echo view(getenv('theme.path').'main/all');
|
|
|
|
/*
|
|
//echo view(getenv('theme.path').'main/header');
|
|
//echo view(getenv('theme.path').'main/menu');
|
|
//echo view(getenv('theme.path').'form/dashboard/index');
|
|
//echo view(getenv('theme.path').'main/footer');
|
|
|
|
/*switch ($session->get('dashboard')):
|
|
case 'admin':
|
|
$data['title'] = [
|
|
'module' => lang("App.dashboard_hello").' '.$name,
|
|
'page' => lang("App.dashboard_indicators"),
|
|
'icon' => ''
|
|
];
|
|
|
|
$data['breadcrumb'] = [
|
|
['title' => lang("App.menu_dashboard"), 'route' => "", 'active' => true]
|
|
];
|
|
|
|
//Cards Top
|
|
$initialDate = date('Y-m-d H:i:s', strtotime('-1 day', time()));
|
|
$finalDate = date('Y-m-d H:i:s');
|
|
$data['total_user'] = $this->user_model->countAllResults();
|
|
$data['total_new'] = $this->user_model->where('created_at between \''.$initialDate.'\' and \''.$finalDate.'\'')->countAllResults();
|
|
$data['total_enabled'] = $this->user_model->where('status',true)->countAllResults();
|
|
$data['total_disabled'] = $this->user_model->where('status',false)->countAllResults();
|
|
|
|
//Char Bar
|
|
$titles_char_bar["labels"] = explode(',',lang("App.dashboard_chart_months"));
|
|
$value_char_bar["series"] = [];
|
|
$return_char_bar_geral = $this->user_model->select("DATE_FORMAT(created_at,'%m') AS month,COUNT(DATE_FORMAT(created_at,'%m')) AS total")
|
|
->where("DATE_FORMAT(NOW(),'%Y') = DATE_FORMAT(created_at,'%Y')")
|
|
->groupBy("DATE_FORMAT(created_at,'%Y-%m')")
|
|
->findAll();
|
|
$return_char_bar_enabled = $this->user_model->select("DATE_FORMAT(created_at,'%m') AS month,COUNT(DATE_FORMAT(created_at,'%m')) AS total")
|
|
->where("DATE_FORMAT(NOW(),'%Y') = DATE_FORMAT(created_at,'%Y') AND status = true")
|
|
->groupBy("DATE_FORMAT(created_at,'%Y-%m')")
|
|
->findAll();
|
|
$return_char_bar_disabled = $this->user_model->select("DATE_FORMAT(updated_at,'%m') AS month,COUNT(DATE_FORMAT(updated_at,'%m')) AS total")
|
|
->where("DATE_FORMAT(NOW(),'%Y') = DATE_FORMAT(updated_at,'%Y') AND status = false")
|
|
->groupBy("DATE_FORMAT(updated_at,'%Y-%m')")
|
|
->findAll();
|
|
$year = [];
|
|
for ($i = 1; $i <= 12; $i++) {
|
|
$notFound = true;
|
|
foreach ($return_char_bar_geral as $item){
|
|
if($i == intval($item->month)){
|
|
array_push($year,intval($item->total));
|
|
$notFound = false;
|
|
break;
|
|
}
|
|
}
|
|
if($notFound){
|
|
array_push($year,0);
|
|
}
|
|
}
|
|
array_push($value_char_bar["series"],$year);
|
|
$year = [];
|
|
for ($i = 1; $i <= 12; $i++) {
|
|
$notFound = true;
|
|
foreach ($return_char_bar_enabled as $item){
|
|
if($i == intval($item->month)){
|
|
array_push($year,intval($item->total));
|
|
$notFound = false;
|
|
break;
|
|
}
|
|
}
|
|
if($notFound){
|
|
array_push($year,0);
|
|
}
|
|
}
|
|
array_push($value_char_bar["series"],$year);
|
|
$year = [];
|
|
for ($i = 1; $i <= 12; $i++) {
|
|
$notFound = true;
|
|
foreach ($return_char_bar_disabled as $item){
|
|
if($i == intval($item->month)){
|
|
array_push($year,intval($item->total));
|
|
$notFound = false;
|
|
break;
|
|
}
|
|
}
|
|
if($notFound){
|
|
array_push($year,0);
|
|
}
|
|
}
|
|
array_push($value_char_bar["series"],$year);
|
|
$data['data_char_bar'] = json_encode(array_merge($titles_char_bar,$value_char_bar));
|
|
|
|
$data['data_user'] = $this->user_model->select('picture,first_name,last_name,email,created_at')
|
|
->orderBy('id_user','DESC')
|
|
->findAll(15);
|
|
|
|
$data['data_activity'] = $this->activity_model
|
|
->select('auth_user.first_name,auth_user.email,auth_activity.detail,auth_activity.created_at')
|
|
->join('auth_user','auth_user.token=auth_activity.user')
|
|
->orderBy('auth_activity.id_activity','DESC')
|
|
->findAll(30);
|
|
|
|
echo view(getenv('theme.path').'main/header');
|
|
//echo view(getenv('theme.path').'form/dashboard/admin',$data);
|
|
echo view(getenv('theme.path').'main/footer');
|
|
break;
|
|
|
|
case 'user':
|
|
$data['title'] = [
|
|
'module' => lang("App.dashboard_hello").' '.$name,
|
|
'page' => lang("App.dashboard_indicators"),
|
|
'icon' => ''
|
|
];
|
|
|
|
$data['breadcrumb'] = [
|
|
['title' => lang("App.menu_dashboard"), 'route' => "", 'active' => true]
|
|
];
|
|
|
|
echo view(getenv('theme.path').'main/header');
|
|
//echo view(getenv('theme.path').'form/dashboard/user',$data);
|
|
echo view(getenv('theme.path').'main/footer');
|
|
break;
|
|
default:
|
|
echo view(getenv('theme.path').'main/header');
|
|
//echo view(getenv('theme.path').'form/dashboard/index');
|
|
echo view(getenv('theme.path').'main/footer');
|
|
endswitch;
|
|
*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|