130 lines
3.7 KiB
PHP
130 lines
3.7 KiB
PHP
<?php
|
|
/**
|
|
* @package eHealth Portal
|
|
*
|
|
* @created 13th August, 2020
|
|
* @author Llewellyn van der Merwe <https://git.vdm.dev/joomla/eHealth-Portal>
|
|
* @copyright Copyright (C) 2020 Vast Development Method. All rights reserved.
|
|
* @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
*
|
|
* Portal for mobile health clinics
|
|
*/
|
|
|
|
// No direct access to this file
|
|
defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\Factory;
|
|
use Joomla\CMS\Language\Text;
|
|
use Joomla\CMS\HTML\HTMLHelper as Html;
|
|
use Joomla\CMS\Layout\LayoutHelper;
|
|
use Joomla\CMS\Router\Route;
|
|
|
|
Html::_('behavior.formvalidator');
|
|
Html::_('formbehavior.chosen', 'select');
|
|
Html::_('behavior.keepalive');
|
|
use VDM\Component\Ehealthportal\Administrator\Helper\EhealthportalHelper;
|
|
|
|
?>
|
|
<?php if ($this->canDo->get('patient_queue.access')): ?>
|
|
<script type="text/javascript">
|
|
Joomla.submitbutton = function(task) {
|
|
if (task === 'patient_queue.back') {
|
|
parent.history.back();
|
|
return false;
|
|
} else {
|
|
var form = document.getElementById('adminForm');
|
|
form.task.value = task;
|
|
form.submit();
|
|
}
|
|
}
|
|
</script>
|
|
<?php $urlId = (isset($this->item->id)) ? '&id='. (int) $this->item->id : ''; ?>
|
|
<form action="<?php echo Route::_('index.php?option=com_ehealthportal&view=patient_queue' . $urlId); ?>" method="post" name="adminForm" id="adminForm" class="form-validate" enctype="multipart/form-data">
|
|
|
|
<script type="text/javascript">
|
|
|
|
jQuery(document).ready(function() {
|
|
var table = jQuery('#example').DataTable( {
|
|
dom: 'Bfrtip',
|
|
buttons: [
|
|
'copy', 'excel', 'pdf'
|
|
]
|
|
} );
|
|
});
|
|
|
|
</script>
|
|
|
|
<table id="example" class="table table-striped table-bordered" style="width:100%">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Position</th>
|
|
<th>Office</th>
|
|
<th>Age</th>
|
|
<th>Start date</th>
|
|
<th>Salary</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Tiger Nixon</td>
|
|
<td>System Architect</td>
|
|
<td>Edinburgh</td>
|
|
<td>61</td>
|
|
<td>2011/04/25</td>
|
|
<td>$320,800</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Taylor Nixonne</td>
|
|
<td>Data Analyst</td>
|
|
<td>London</td>
|
|
<td>62</td>
|
|
<td>2019/04/25</td>
|
|
<td>$310,800</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Garrett Winters</td>
|
|
<td>Accountant</td>
|
|
<td>Tokyo</td>
|
|
<td>63</td>
|
|
<td>2011/07/25</td>
|
|
<td>$170,750</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Jenette Caldwell</td>
|
|
<td>Development Lead</td>
|
|
<td>New York</td>
|
|
<td>30</td>
|
|
<td>2011/09/03</td>
|
|
<td>$345,000</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Suki Burks</td>
|
|
<td>Developer</td>
|
|
<td>London</td>
|
|
<td>53</td>
|
|
<td>2009/10/22</td>
|
|
<td>$114,500</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Position</th>
|
|
<th>Office</th>
|
|
<th>Age</th>
|
|
<th>Start date</th>
|
|
<th>Salary</th>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
<input type="hidden" name="task" value="" />
|
|
<?php echo Html::_('form.token'); ?>
|
|
</form>
|
|
<?php else: ?>
|
|
<h1><?php echo Text::_('COM_EHEALTHPORTAL_NO_ACCESS_GRANTED'); ?></h1>
|
|
<?php endif; ?>
|