mirror of
https://github.com/Karaka-Management/oms-Admin.git
synced 2026-01-11 13:38:39 +00:00
414 lines
30 KiB
PHP
Executable File
414 lines
30 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package Modules\Admin\Theme
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
use phpOMS\Account\GroupStatus;
|
|
use phpOMS\Account\PermissionOwner;
|
|
use phpOMS\Account\PermissionType;
|
|
use phpOMS\Message\Http\HttpHeader;
|
|
use phpOMS\Uri\UriFactory;
|
|
|
|
/**
|
|
* @var \phpOMS\Views\View $this
|
|
*/
|
|
$group = $this->data['group'];
|
|
$permissions = $this->data['permissions'];
|
|
$accounts = $group->getAccounts();
|
|
$audits = $this->data['auditlogs'] ?? [];
|
|
|
|
$previous = empty($audits)
|
|
? HttpHeader::getAllHeaders()['Referer'] ?? 'admin/group/settings?id={?id}#{\#}'
|
|
: 'admin/group/settings?{?}&audit=' . \reset($audits)->id . '&ptype=p#{\#}';
|
|
$next = empty($audits)
|
|
? HttpHeader::getAllHeaders()['Referer'] ?? 'admin/group/settings?id={?id}#{\#}'
|
|
: 'admin/group/settings?{?}&audit=' . \end($audits)->id . '&ptype=n#{\#}';
|
|
|
|
echo $this->data['nav']->render(); ?>
|
|
|
|
<div id="igroup-tabs" class="tabview tab-2 url-rewrite">
|
|
<div class="box">
|
|
<ul class="tab-links">
|
|
<li><label for="c-tab-1"><?= $this->getHtml('General'); ?></label></li>
|
|
<li><label for="c-tab-2"><?= $this->getHtml('Accounts'); ?></label></li>
|
|
<li><label for="c-tab-3"><?= $this->getHtml('Permissions'); ?></label></li>
|
|
<li><label for="c-tab-4"><?= $this->getHtml('AuditLog'); ?></label></li>
|
|
</ul>
|
|
</div>
|
|
<div class="tab-content">
|
|
<input type="radio" id="c-tab-1" name="tabular-2"<?= empty($this->request->uri->fragment) || $this->request->uri->fragment === 'c-tab-1' ? ' checked' : ''; ?>>
|
|
<div class="tab">
|
|
<div class="row">
|
|
<div class="col-xs-12 col-md-6">
|
|
<div class="portlet">
|
|
<form id="fGroupEdit" action="<?= UriFactory::build('{/api}admin/group'); ?>" method="post">
|
|
<div class="portlet-head"><?= $this->getHtml('Group'); ?></div>
|
|
<div class="portlet-body">
|
|
<div class="form-group">
|
|
<label for="iGid"><?= $this->getHtml('ID', '0', '0'); ?></label>
|
|
<input id="iGid" name="id" type="text" value="<?= $group->id; ?>" disabled>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="iGname"><?= $this->getHtml('Name'); ?></label>
|
|
<input id="iGname" name="name" type="text" spellcheck="false" autocomplete="off" placeholder=" Guest" value="<?= $this->printHtml($group->name); ?>">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="iGstatus"><?= $this->getHtml('Status'); ?></label>
|
|
<select id="iGstatus" name="status">
|
|
<?php $status = GroupStatus::getConstants(); foreach ($status as $stat) : ?>
|
|
<option value="<?= $stat; ?>"<?= $stat === $group->getStatus() ? ' selected' : ''; ?>><?= $this->getHtml('GroupStatus' . $stat); ?>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</div>
|
|
<?= $this->getData('editor')->render('group-editor'); ?>
|
|
<?= $this->getData('editor')->getData('text')->render(
|
|
'group-editor',
|
|
'description',
|
|
'fGroupEdit',
|
|
$group->descriptionRaw,
|
|
$group->description
|
|
); ?>
|
|
</div>
|
|
<div class="portlet-foot">
|
|
<input id="groupSubmit" name="groupsubmit" type="submit" value="<?= $this->getHtml('Save', '0', '0'); ?>">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<input type="radio" id="c-tab-2" name="tabular-2"<?= $this->request->uri->fragment === 'c-tab-2' ? ' checked' : ''; ?>>
|
|
<div class="tab">
|
|
<div class="row">
|
|
<div class="col-xs-12 col-md-6">
|
|
<div class="portlet">
|
|
<form id="iAddAccountToGroup" action="<?= UriFactory::build('{/api}admin/group/account'); ?>" method="put"
|
|
data-ui-container="#accountTable tbody"
|
|
data-add-form="accountForm"
|
|
data-add-tpl="#accountTable tbody .oms-add-tpl-account">
|
|
<div class="portlet-head"><?= $this->getHtml('Accounts'); ?></div>
|
|
<div class="portlet-body">
|
|
<input id="iGroupId" name="group" type="hidden" value="<?= $group->id; ?>" disabled>
|
|
|
|
<div class="form-group">
|
|
<label for="iAccount"><?= $this->getHtml('Name'); ?></label>
|
|
<?= $this->getData('accGrpSelector')->render('iAccount', 'group', true); ?>
|
|
</div>
|
|
</div>
|
|
<div class="portlet-foot">
|
|
<input id="bAccountAdd" formmethod="put" type="submit" class="add-form" value="<?= $this->getHtml('Add', '0', '0'); ?>">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="portlet">
|
|
<div class="portlet-head"><?= $this->getHtml('Accounts'); ?><i class="g-icon download btn end-xs">download</i></div>
|
|
<table id="accountTable" class="default"
|
|
data-tag="form"
|
|
data-ui-element="tr"
|
|
data-add-tpl=".oms-add-tpl-account"
|
|
data-delete-form="accountForm">
|
|
<thead>
|
|
<tr>
|
|
<td>
|
|
<td><?= $this->getHtml('ID', '0', '0'); ?><i class="sort-asc g-icon">expand_less</i><i class="sort-desc g-icon">expand_more</i>
|
|
<td class="wf-100"><?= $this->getHtml('Name'); ?><i class="sort-asc g-icon">expand_less</i><i class="sort-desc g-icon">expand_more</i>
|
|
<tbody>
|
|
<template class="oms-add-tpl-account">
|
|
<tr data-id="" draggable="false">
|
|
<td>
|
|
<i class="g-icon btn remove-form">close</i>
|
|
<input id="accountTable-remove-0" type="checkbox" class="hidden">
|
|
<label for="accountTable-remove-0" class="checked-visibility-alt"><i class="g-icon btn form-action">close</i></label>
|
|
<span class="checked-visibility">
|
|
<label for="accountTable-remove-0" class="link default"><?= $this->getHtml('Cancel', '0', '0'); ?></label>
|
|
<label for="accountTable-remove-0" class="remove-form link cancel"><?= $this->getHtml('Delete', '0', '0'); ?></label>
|
|
</span>
|
|
<td data-tpl-text="/id" data-tpl-value="/id"></td>
|
|
<td data-tpl-text="/name/0" data-tpl-value="/name/0"></td>
|
|
</tr>
|
|
</template>
|
|
<?php
|
|
$c = 0;
|
|
foreach ($accounts as $key => $value) : ++$c;
|
|
$url = UriFactory::build('{/base}/admin/account/settings?{?}&id=' . $value->id); ?>
|
|
<tr data-id="<?= $value->id; ?>">
|
|
<td><input id="accountTable-remove-<?= $value->id; ?>" type="checkbox" class="hidden">
|
|
<label for="accountTable-remove-<?= $value->id; ?>" class="checked-visibility-alt"><i class="g-icon btn form-action">close</i></label>
|
|
<span class="checked-visibility">
|
|
<label for="accountTable-remove-<?= $value->id; ?>" class="link default"><?= $this->getHtml('Cancel', '0', '0'); ?></label>
|
|
<label for="accountTable-remove-<?= $value->id; ?>" class="remove-form link cancel"><?= $this->getHtml('Delete', '0', '0'); ?></label>
|
|
</span>
|
|
<td data-tpl-text="/id" data-tpl-value="/id" data-id="<?= $value->id; ?>"><?= $value->id; ?>
|
|
<td data-tpl-value="/name/0"><a href="<?= $url; ?>" data-tpl-text="/name/0"><?= $this->printHtml($value->login); ?></a>
|
|
<?php endforeach; ?>
|
|
<?php if ($c === 0) : ?>
|
|
<tr><td colspan="3" class="empty"><?= $this->getHtml('Empty', '0', '0'); ?>
|
|
<?php endif; ?>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<input type="radio" id="c-tab-3" name="tabular-2"<?= $this->request->uri->fragment === 'c-tab-3' ? ' checked' : ''; ?>>
|
|
<div class="tab">
|
|
<div class="row">
|
|
<div class="col-xs-12 col-md-6">
|
|
<div class="portlet">
|
|
<form id="permissionForm"
|
|
action="<?= UriFactory::build('{/api}admin/group/permission'); ?>"
|
|
data-ui-container="#permissionTable tbody"
|
|
data-add-form="permissionForm"
|
|
data-add-tpl="#permissionTable tbody .oms-add-tpl-permission"
|
|
method="put">
|
|
<div class="portlet-head"><?= $this->getHtml('Permissions'); ?></div>
|
|
<div class="portlet-body">
|
|
<div class="form-group">
|
|
<label for="iPermissionId"><?= $this->getHtml('ID', '0', '0'); ?></label>
|
|
<input id="iPermissionId" name="permissionref" type="text" data-tpl-text="/id" data-tpl-value="/id" disabled>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="iPermissionUnit"><?= $this->getHtml('Unit'); ?></label>
|
|
<select id="iPermissionUnit" name="permissionunit" data-tpl-text="/unit" data-tpl-value="/unit">
|
|
<option value="">
|
|
<?php
|
|
foreach ($this->data['units'] as $unit) : ?>
|
|
<option value="<?= $unit->id; ?>"><?= $this->printHtml($unit->name); ?>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="iPermissionApp"><?= $this->getHtml('App'); ?></label>
|
|
<select id="iPermissionApp" name="permissionapp" data-tpl-text="/app" data-tpl-value="/app">
|
|
<option value="">
|
|
<?php
|
|
foreach ($this->data['apps'] as $app) : ?>
|
|
<option value="<?= $app->id; ?>"><?= $this->printHtml($app->name); ?>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="iPermissionModule"><?= $this->getHtml('Module'); ?></label>
|
|
<select id="iPermissionModule" name="permissionmodule" data-tpl-text="/module" data-tpl-value="/module">
|
|
<option value="">
|
|
<?php
|
|
foreach ($this->data['modules'] as $module) : ?>
|
|
<option value="<?= $module->name; ?>"><?= $this->printHtml($module->name); ?>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="iPermissionType"><?= $this->getHtml('Type'); ?></label>
|
|
<input id="iPermissionType" name="permissiontype" type="text" data-tpl-text="/type" data-tpl-value="/type">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="iPermissionElement"><?= $this->getHtml('Element'); ?></label>
|
|
<input id="iPermissionElement" name="permissionelement" type="text" data-tpl-text="/ele" data-tpl-value="/ele">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="iPermissionComponent"><?= $this->getHtml('Component'); ?></label>
|
|
<input id="iPermissionComponent" name="permissioncomponent" type="text" data-tpl-text="/comp" data-tpl-value="/comp">
|
|
</div>
|
|
<div class="form-group">
|
|
<label><?= $this->getHtml('Permission'); ?></label>
|
|
<span class="checkbox">
|
|
<label class="checkbox" for="iPermissionCreate">
|
|
<input id="iPermissionCreate" type="checkbox" name="permissioncreate" value="<?= PermissionType::CREATE; ?>" data-tpl-text="/perm/c" data-tpl-value="/perm/c">
|
|
<span class="checkmark"></span>
|
|
<?= $this->getHtml('Create'); ?>
|
|
</label>
|
|
</span>
|
|
|
|
<span class="checkbox">
|
|
<label class="checkbox" for="iPermissionRead">
|
|
<input id="iPermissionRead" type="checkbox" name="permissionread" value="<?= PermissionType::READ; ?>" data-tpl-text="/perm/r" data-tpl-value="/perm/r">
|
|
<span class="checkmark"></span>
|
|
<?= $this->getHtml('Read'); ?>
|
|
</label>
|
|
</span>
|
|
|
|
<span class="checkbox">
|
|
<label class="checkbox" for="iPermissionUpdate">
|
|
<input id="iPermissionUpdate" type="checkbox" name="permissionupdate" value="<?= PermissionType::MODIFY; ?>" data-tpl-text="/perm/u" data-tpl-value="/perm/u">
|
|
<span class="checkmark"></span>
|
|
<?= $this->getHtml('Update'); ?>
|
|
</label>
|
|
</span>
|
|
|
|
<span class="checkbox">
|
|
<label class="checkbox" for="iPermissionDelete">
|
|
<input id="iPermissionDelete" type="checkbox" name="permissiondelete" value="<?= PermissionType::DELETE; ?>" data-tpl-text="/perm/d" data-tpl-value="/perm/d">
|
|
<span class="checkmark"></span>
|
|
<?= $this->getHtml('Delete'); ?>
|
|
</label>
|
|
</span>
|
|
|
|
<span class="checkbox">
|
|
<label class="checkbox" for="iPermissionPermission">
|
|
<input id="iPermissionPermission" type="checkbox" name="permissionpermission" value="<?= PermissionType::PERMISSION; ?>" data-tpl-text="/perm/p" data-tpl-value="/perm/p">
|
|
<span class="checkmark"></span>
|
|
<?= $this->getHtml('Permission'); ?>
|
|
</label>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="portlet-foot">
|
|
<input type="hidden" name="permissionowner" value="<?= PermissionOwner::GROUP; ?>">
|
|
|
|
<input id="bPermissionAdd" formmethod="put" type="submit" class="add-form" value="<?= $this->getHtml('Add', '0', '0'); ?>">
|
|
<input id="bPermissionSave" formmethod="post" type="submit" class="save-form hidden button save" value="<?= $this->getHtml('Update', '0', '0'); ?>">
|
|
<input type="submit" class="cancel-form hidden button close" value="<?= $this->getHtml('Cancel', '0', '0'); ?>">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-xs-12 col-md-6">
|
|
<div class="portlet">
|
|
<div class="portlet-head"><?= $this->getHtml('Permissions'); ?><i class="g-icon download btn end-xs">download</i></div>
|
|
<div class="slider">
|
|
<table id="permissionTable" class="default"
|
|
data-tag="form"
|
|
data-ui-element="tr"
|
|
data-add-tpl=".oms-add-tpl-permission"
|
|
data-update-form="permissionForm">
|
|
<thead>
|
|
<tr>
|
|
<td>
|
|
<td><?= $this->getHtml('ID', '0', '0'); ?><i class="sort-asc g-icon">expand_less</i><i class="sort-desc g-icon">expand_more</i>
|
|
<td><?= $this->getHtml('Unit'); ?><i class="sort-asc g-icon">expand_less</i><i class="sort-desc g-icon">expand_more</i>
|
|
<td><?= $this->getHtml('App'); ?><i class="sort-asc g-icon">expand_less</i><i class="sort-desc g-icon">expand_more</i>
|
|
<td><?= $this->getHtml('Module'); ?><i class="sort-asc g-icon">expand_less</i><i class="sort-desc g-icon">expand_more</i>
|
|
<td><?= $this->getHtml('Type'); ?><i class="sort-asc g-icon">expand_less</i><i class="sort-desc g-icon">expand_more</i>
|
|
<td><?= $this->getHtml('Ele'); ?><i class="sort-asc g-icon">expand_less</i><i class="sort-desc g-icon">expand_more</i>
|
|
<td><?= $this->getHtml('Comp'); ?><i class="sort-asc g-icon">expand_less</i><i class="sort-desc g-icon">expand_more</i>
|
|
<td class="wf-100"><?= $this->getHtml('Perm'); ?>
|
|
<tbody>
|
|
<template class="oms-add-tpl-permission">
|
|
<tr data-id="" draggable="false">
|
|
<td><i class="g-icon btn update-form">settings</i>
|
|
<input id="permissionTable-remove-0" type="checkbox" class="hidden">
|
|
<label for="permissionTable-remove-0" class="checked-visibility-alt"><i class="g-icon btn form-action">close</i></label>
|
|
<span class="checked-visibility">
|
|
<label for="permissionTable-remove-0" class="link default"><?= $this->getHtml('Cancel', '0', '0'); ?></label>
|
|
<label for="permissionTable-remove-0" class="remove-form link cancel"><?= $this->getHtml('Delete', '0', '0'); ?></label>
|
|
</span>
|
|
<td></td>
|
|
<td data-tpl-text="/unit" data-tpl-value="/unit" data-value=""></td>
|
|
<td data-tpl-text="/app" data-tpl-value="/app" data-value=""></td>
|
|
<td data-tpl-text="/module" data-tpl-value="/module" data-value=""></td>
|
|
<td data-tpl-text="/type" data-tpl-value="/type" data-value=""></td>
|
|
<td data-tpl-text="/ele" data-tpl-value="/ele" data-value=""></td>
|
|
<td data-tpl-text="/comp" data-tpl-value="/comp" data-value=""></td>
|
|
<td>
|
|
<span data-tpl-text="/perm/c" data-tpl-value="/perm/c" data-value=""><span>
|
|
<span data-tpl-text="/perm/r" data-tpl-value="/perm/r" data-value=""><span>
|
|
<span data-tpl-text="/perm/u" data-tpl-value="/perm/u" data-value=""><span>
|
|
<span data-tpl-text="/perm/d" data-tpl-value="/perm/d" data-value=""><span>
|
|
<span data-tpl-text="/perm/p" data-tpl-value="/perm/p" data-value=""><span>
|
|
</td>
|
|
</tr>
|
|
</template>
|
|
<?php $c = 0;
|
|
foreach ($permissions as $key => $value) : ++$c;
|
|
$permission = $value->getPermission(); ?>
|
|
<tr data-id="<?= $value->id; ?>">
|
|
<td><i class="g-icon btn update-form">settings</i>
|
|
<input id="permissionTable-remove-<?= $value->id; ?>" type="checkbox" class="hidden">
|
|
<label for="permissionTable-remove-<?= $value->id; ?>" class="checked-visibility-alt"><i class="g-icon btn form-action">close</i></label>
|
|
<span class="checked-visibility">
|
|
<label for="permissionTable-remove-<?= $value->id; ?>" class="link default"><?= $this->getHtml('Cancel', '0', '0'); ?></label>
|
|
<label for="permissionTable-remove-<?= $value->id; ?>" class="remove-form link cancel"><?= $this->getHtml('Delete', '0', '0'); ?></label>
|
|
</span>
|
|
<td data-tpl-text="/id" data-tpl-value="/id"><?= $value->id; ?>
|
|
<td data-tpl-text="/unit" data-tpl-value="/unit" data-value="<?= $this->printHtml((string) $value->unit); ?>"><?= $this->printHtml(isset($this->data['units'][$value->unit]) ? $this->data['units'][$value->unit]->name : ''); ?>
|
|
<td data-tpl-text="/app" data-tpl-value="/app" data-value="<?= $this->printHtml((string) $value->app); ?>"><?= $this->printHtml(isset($this->data['apps'][$value->app]) ? $this->data['apps'][$value->app]->name : ''); ?>
|
|
<td data-tpl-text="/module" data-tpl-value="/module" data-value="<?= $this->printHtml($value->module); ?>"><?= $this->printHtml($value->module); ?>
|
|
<td data-tpl-text="/type" data-tpl-value="/type"><?= $this->printHtml((string) $value->category); ?>
|
|
<td data-tpl-text="/ele" data-tpl-value="/ele"><?= $this->printHtml((string) $value->element); ?>
|
|
<td data-tpl-text="/comp" data-tpl-value="/comp"><?= $this->printHtml((string) $value->component); ?>
|
|
<td>
|
|
<?php if ((PermissionType::CREATE | $permission) === $permission) : ?>
|
|
<span data-tpl-text="/perm/c" data-tpl-value="/perm/c" data-value="<?= PermissionType::CREATE; ?>">C</span>
|
|
<?php endif; ?>
|
|
<?php if ((PermissionType::READ | $permission) === $permission) : ?>
|
|
<span data-tpl-text="/perm/r" data-tpl-value="/perm/r" data-value="<?= PermissionType::READ; ?>">R</span>
|
|
<?php endif; ?>
|
|
<?php if ((PermissionType::MODIFY | $permission) === $permission) : ?>
|
|
<span data-tpl-text="/perm/u" data-tpl-value="/perm/u" data-value="<?= PermissionType::MODIFY; ?>">U</span>
|
|
<?php endif; ?>
|
|
<?php if ((PermissionType::DELETE | $permission) === $permission) : ?>
|
|
<span data-tpl-text="/perm/d" data-tpl-value="/perm/d" data-value="<?= PermissionType::DELETE; ?>">D</span>
|
|
<?php endif; ?>
|
|
<?php if ((PermissionType::PERMISSION | $permission) === $permission) : ?>
|
|
<span data-tpl-text="/perm/p" data-tpl-value="/perm/p" data-value="<?= PermissionType::PERMISSION; ?>">P</span>
|
|
<?php endif; ?>
|
|
<?php endforeach; ?>
|
|
<?php if ($c === 0) : ?>
|
|
<tr><td colspan="9" class="empty"><?= $this->getHtml('Empty', '0', '0'); ?>
|
|
<?php endif; ?>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<input type="radio" id="c-tab-4" name="tabular-2"<?= $this->request->uri->fragment === 'c-tab-4' ? ' checked' : ''; ?>>
|
|
<div class="tab">
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="portlet">
|
|
<div class="portlet-head"><?= $this->getHtml('Audits', 'Auditor'); ?><i class="g-icon download btn end-xs">download</i></div>
|
|
<table class="default fixed">
|
|
<thead>
|
|
<tr>
|
|
<td><?= $this->getHtml('ID', '0', '0'); ?>
|
|
<td><?= $this->getHtml('Module', 'Auditor'); ?>
|
|
<td><?= $this->getHtml('Type', 'Auditor'); ?>
|
|
<td><?= $this->getHtml('Trigger', 'Auditor'); ?>
|
|
<td><?= $this->getHtml('By', 'Auditor'); ?>
|
|
<td><?= $this->getHtml('Ref', 'Auditor'); ?>
|
|
<td><?= $this->getHtml('Date', 'Auditor'); ?>
|
|
<tbody>
|
|
<?php $count = 0; foreach ($audits as $key => $audit) : ++$count;
|
|
$url = UriFactory::build('{/base}/admin/audit/single?{?}&id=' . $audit->id); ?>
|
|
<tr tabindex="0" data-href="<?= $url; ?>">
|
|
<td><?= $audit->id; ?>
|
|
<td><?= $this->printHtml($audit->module); ?>
|
|
<td><?= $audit->type; ?>
|
|
<td><?= $this->printHtml($audit->trigger); ?>
|
|
<td><?= $this->printHtml($audit->createdBy->login); ?>
|
|
<td><?= $this->printHtml($audit->ref); ?>
|
|
<td><?= $audit->createdAt->format('Y-m-d H:i'); ?>
|
|
<?php endforeach; ?>
|
|
<?php if ($count === 0) : ?>
|
|
<tr><td colspan="7" class="empty"><?= $this->getHtml('Empty', '0', '0'); ?>
|
|
<?php endif; ?>
|
|
</table>
|
|
<div class="portlet-foot">
|
|
<a tabindex="0" class="button" href="<?= UriFactory::build($previous); ?>"><?= $this->getHtml('Previous', '0', '0'); ?></a>
|
|
<a tabindex="0" class="button" href="<?= UriFactory::build($next); ?>"><?= $this->getHtml('Next', '0', '0'); ?></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|