Dateien hochladen nach „libs“

This commit is contained in:
2023-02-25 02:06:41 +01:00
parent 074411eeb5
commit 542006d923
11 changed files with 561 additions and 0 deletions

33
libs/last_login.php Normal file
View File

@@ -0,0 +1,33 @@
<?php
require '../autoload.php';
$Config = new Config();
$datas = array();
if ($Config->get('last_login:enable'))
{
if (!(exec('/usr/bin/lastlog --time 365 | /usr/bin/awk -F\' \' \'{ print $1";"$5, $4, $8, $6}\'', $users)))
{
$datas[] = array(
'user' => 'N.A',
'date' => 'N.A',
);
}
else
{
$max = $Config->get('last_login:max');
for ($i = 1; $i < count($users) && $i <= $max; $i++)
{
list($user, $date) = explode(';', $users[$i]);
$datas[] = array(
'user' => $user,
'date' => $date,
);
}
}
}
echo json_encode($datas);