eHealth-Portal/admin/controllers/ehealthportal.php

30 lines
760 B
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('Restricted access');
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
/**
* Ehealthportal Admin Controller
*/
class EhealthportalControllerEhealthportal extends AdminController
{
}