2021-04-24 04:42:47 +00:00
|
|
|
<?php
|
|
|
|
/*--------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
__ __ _ _____ _ _ __ __ _ _ _
|
|
|
|
\ \ / / | | | __ \ | | | | | \/ | | | | | | |
|
|
|
|
\ \ / /_ _ ___| |_ | | | | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ | \ / | ___| |_| |__ ___ __| |
|
|
|
|
\ \/ / _` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| '_ \ / _ \ / _` |
|
|
|
|
\ / (_| \__ \ |_ | |__| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | | | | __/ |_| | | | (_) | (_| |
|
|
|
|
\/ \__,_|___/\__| |_____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| |_| |_|\___|\__|_| |_|\___/ \__,_|
|
|
|
|
| |
|
|
|
|
|_|
|
|
|
|
/-------------------------------------------------------------------------------------------------------------------------------/
|
|
|
|
|
2024-01-19 14:44:48 +00:00
|
|
|
@version 3.0.0
|
|
|
|
@build 19th January, 2024
|
|
|
|
@created 19th January, 2024
|
2021-04-24 04:42:47 +00:00
|
|
|
@package eHealth Portal
|
|
|
|
@subpackage default_head.php
|
2024-01-19 14:44:48 +00:00
|
|
|
@author Llewellyn van der Merwe <https://git.vdm.dev/joomla/eHealth-Portal>
|
2021-04-24 04:42:47 +00:00
|
|
|
@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('Restricted access');
|
|
|
|
|
2024-01-19 14:44:48 +00:00
|
|
|
use Joomla\CMS\Language\Text;
|
|
|
|
use Joomla\CMS\HTML\HTMLHelper as Html;
|
|
|
|
|
2021-04-24 04:42:47 +00:00
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<?php if ($this->canEdit&& $this->canState): ?>
|
|
|
|
<th width="1%" class="nowrap center hidden-phone">
|
2024-01-19 14:44:48 +00:00
|
|
|
<?php echo Html::_('searchtools.sort', '', 'a.ordering', $this->listDirn, $this->listOrder, null, 'asc', 'JGRID_HEADING_ORDERING', 'icon-menu-2'); ?>
|
2021-04-24 04:42:47 +00:00
|
|
|
</th>
|
|
|
|
<th width="20" class="nowrap center">
|
2024-01-19 14:44:48 +00:00
|
|
|
<?php echo Html::_('grid.checkall'); ?>
|
2021-04-24 04:42:47 +00:00
|
|
|
</th>
|
|
|
|
<?php else: ?>
|
|
|
|
<th width="20" class="nowrap center hidden-phone">
|
|
|
|
▾
|
|
|
|
</th>
|
|
|
|
<th width="20" class="nowrap center">
|
|
|
|
■
|
|
|
|
</th>
|
|
|
|
<?php endif; ?>
|
|
|
|
<th class="nowrap" >
|
2024-01-19 14:44:48 +00:00
|
|
|
<?php echo Html::_('searchtools.sort', 'COM_EHEALTHPORTAL_FOETAL_ENGAGEMENT_NAME_LABEL', 'a.name', $this->listDirn, $this->listOrder); ?>
|
2021-04-24 04:42:47 +00:00
|
|
|
</th>
|
|
|
|
<th class="nowrap hidden-phone" >
|
2024-01-19 14:44:48 +00:00
|
|
|
<?php echo Html::_('searchtools.sort', 'COM_EHEALTHPORTAL_FOETAL_ENGAGEMENT_DESCRIPTION_LABEL', 'a.description', $this->listDirn, $this->listOrder); ?>
|
2021-04-24 04:42:47 +00:00
|
|
|
</th>
|
|
|
|
<?php if ($this->canState): ?>
|
|
|
|
<th width="10" class="nowrap center" >
|
2024-01-19 14:44:48 +00:00
|
|
|
<?php echo Html::_('searchtools.sort', 'COM_EHEALTHPORTAL_FOETAL_ENGAGEMENT_STATUS', 'a.published', $this->listDirn, $this->listOrder); ?>
|
2021-04-24 04:42:47 +00:00
|
|
|
</th>
|
|
|
|
<?php else: ?>
|
|
|
|
<th width="10" class="nowrap center" >
|
2024-01-19 14:44:48 +00:00
|
|
|
<?php echo Text::_('COM_EHEALTHPORTAL_FOETAL_ENGAGEMENT_STATUS'); ?>
|
2021-04-24 04:42:47 +00:00
|
|
|
</th>
|
|
|
|
<?php endif; ?>
|
|
|
|
<th width="5" class="nowrap center hidden-phone" >
|
2024-01-19 14:44:48 +00:00
|
|
|
<?php echo Html::_('searchtools.sort', 'COM_EHEALTHPORTAL_FOETAL_ENGAGEMENT_ID', 'a.id', $this->listDirn, $this->listOrder); ?>
|
2021-04-24 04:42:47 +00:00
|
|
|
</th>
|
|
|
|
</tr>
|