mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
43 lines
1.0 KiB
PHP
43 lines
1.0 KiB
PHP
<?php
|
|
$includesArray = array(
|
|
'title' => 'Logs Viewer',
|
|
'axios027' => true,
|
|
'bootstrap5' => true,
|
|
'fontawesome6' => true,
|
|
'vue3' => true,
|
|
'filtercomponent' => true,
|
|
'navigationcomponent' => true,
|
|
'tabulator5' => true,
|
|
'primevue3' => true,
|
|
'phrases' => array(
|
|
'global' => array('mailAnXversandt'),
|
|
'ui' => array('bitteEintragWaehlen')
|
|
),
|
|
'fhcApps' => array('LogsViewer/LogsViewer'),
|
|
);
|
|
|
|
$this->load->view('templates/FHC-Header', $includesArray);
|
|
?>
|
|
|
|
<div id="main">
|
|
|
|
<!-- Navigation component -->
|
|
<core-navigation-cmpt v-bind:add-side-menu-entries="appSideMenuEntries"></core-navigation-cmpt>
|
|
|
|
<div id="content">
|
|
<div>
|
|
<!-- Filter component -->
|
|
<core-filter-cmpt
|
|
title="Job Logs Viewer"
|
|
filter-type="LogsViewer"
|
|
:tabulator-options="logsViewerTabulatorOptions"
|
|
:tabulator-events="logsViewerTabulatorEventHandlers"
|
|
@nw-new-entry="newSideMenuEntryHandler">
|
|
</core-filter-cmpt>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php $this->load->view('templates/FHC-Footer', $includesArray); ?>
|
|
|