PHP_SMART_HOME_V3/app/views/Log.php

39 lines
750 B
PHP
Raw Normal View History

2019-09-01 13:55:33 +00:00
<?php
class Log extends Template
{
function __construct()
{
global $userManager;
2019-10-11 12:12:05 +00:00
global $langMng;
2019-09-01 13:55:33 +00:00
if (!$userManager->isLogin()){
2019-10-11 14:32:05 +00:00
header('Location: ' . BASEDIR . 'login');
2019-09-01 13:55:33 +00:00
}
$template = new Template('log');
$template->prepare('title', 'Log');
$result = array();
2019-09-19 12:48:31 +00:00
$cdir = scandir('./app/logs/');
2019-09-01 13:55:33 +00:00
foreach ($cdir as $key => $value)
{
if (!in_array($value,array(".","..", ".gitkeep")))
2019-09-01 13:55:33 +00:00
{
$result[$value] = $value;
}
}
2019-10-11 14:38:20 +00:00
$template->prepare('baseDir', BASEDIR);
2020-02-18 20:30:44 +00:00
$template->prepare('debugMod', DEBUGMOD);
$template->prepare('logToLiveTime', LOGTIMOUT);
2019-10-11 14:38:20 +00:00
$template->prepare('title', 'Logy');
2019-09-01 13:55:33 +00:00
$template->prepare('logsFiles', $result);
2019-10-11 12:12:05 +00:00
$template->prepare('langMng', $langMng);
2019-09-01 13:55:33 +00:00
$template->render();
}
}