@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\BaseController; use Joomla\CMS\Router\Route; use Joomla\CMS\Session\Session; use Joomla\Utilities\ArrayHelper; /** * Ehealthportal Patient_queue Base Controller */ class EhealthportalControllerPatient_queue extends BaseController { public function __construct($config) { parent::__construct($config); } public function dashboard() { $this->setRedirect(Route::_('index.php?option=com_ehealthportal', false)); return; } }