mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-03 21:29:28 +00:00
cd815acdbf
- Added new config entry job_type_permissions_white_list in jqm.php - Added new navigation entry jobsqueueviewer - Added new model application/models/system/JobsQueue_model.php - Added new option in FilterWidget for hours comparison with dates - Added new filter core-jq-lastHour to system/filtersupdate.php - Added new statements to system/dbupdate_3.3.php to create tables system.tbl_jobstatuses, system.tbl_jobtypes and system.tbl_jobstatuses - Added new views application/views/system/jq/jobsQueueViewer.php and application/views/system/jq/jobsQueueViewerData.php
48 lines
1.0 KiB
PHP
48 lines
1.0 KiB
PHP
<?php
|
|
$this->load->view(
|
|
'templates/FHC-Header',
|
|
array(
|
|
'title' => 'Jobs Queue Viewer',
|
|
'jquery' => true,
|
|
'jqueryui' => true,
|
|
'bootstrap' => true,
|
|
'fontawesome' => true,
|
|
'sbadmintemplate' => true,
|
|
'tablesorter' => true,
|
|
'ajaxlib' => true,
|
|
'filterwidget' => true,
|
|
'navigationwidget' => true,
|
|
'phrases' => array(
|
|
'global' => array('mailAnXversandt'),
|
|
'ui' => array('bitteEintragWaehlen')
|
|
),
|
|
'customCSSs' => 'public/css/sbadmin2/tablesort_bootstrap.css',
|
|
'customJSs' => array('public/js/bootstrapper.js')
|
|
)
|
|
);
|
|
?>
|
|
|
|
<body>
|
|
<div id="wrapper">
|
|
|
|
<?php echo $this->widgetlib->widget('NavigationWidget'); ?>
|
|
|
|
<div id="page-wrapper">
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<h3 class="page-header">
|
|
Jobs Queue Viewer
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<?php $this->load->view('system/jq/jobsQueueViewerData.php'); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
<?php $this->load->view('templates/FHC-Footer'); ?>
|