@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\Utilities\ArrayHelper; /** * Ehealth_portal Patient_queue Controller */ class Ehealth_portalControllerPatient_queue extends JControllerLegacy { public function __construct($config) { parent::__construct($config); } public function dashboard() { $this->setRedirect(JRoute::_('index.php?option=com_ehealth_portal', false)); return; } }