21 lines
861 B
PHP
21 lines
861 B
PHP
<?php
|
|
namespace Misuzu;
|
|
|
|
use Misuzu\Pagination;
|
|
|
|
$currentUser = $msz->authInfo->userInfo;
|
|
if($currentUser === null)
|
|
Template::throwError(401);
|
|
|
|
$loginHistoryPagination = new Pagination($msz->authCtx->loginAttempts->countAttempts(userInfo: $currentUser), 5, 'hp');
|
|
$accountLogPagination = new Pagination($msz->auditLog->countLogs(userInfo: $currentUser), 10, 'ap');
|
|
|
|
$loginHistory = iterator_to_array($msz->authCtx->loginAttempts->getAttempts(userInfo: $currentUser, pagination: $loginHistoryPagination));
|
|
$auditLogs = iterator_to_array($msz->auditLog->getLogs(userInfo: $currentUser, pagination: $accountLogPagination));
|
|
|
|
Template::render('settings.logs', [
|
|
'login_history_list' => $loginHistory,
|
|
'login_history_pagination' => $loginHistoryPagination,
|
|
'account_log_list' => $auditLogs,
|
|
'account_log_pagination' => $accountLogPagination,
|
|
]);
|