<?php /** * @package Sven.Bluege * @subpackage com_eventgallery * * @copyright Copyright (C) 2005 - 2019 Sven Bluege All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; jimport('joomla.application.component.controller'); jimport('joomla.filesystem.file'); /** @noinspection PhpUndefinedClassInspection */ class EventgalleryController extends JControllerLegacy { protected $default_view = 'eventgallery'; /** * constructor (registers additional tasks to methods) * */ function __construct() { parent::__construct(); } /* * Standard display method * * @param boolean $cachable If true, the view output will be cached * @param array $urlparams An array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}. * * @return JControllerLegacy A JControllerLegacy object to support chaining. */ public function display($cachable = false, $urlparams = array()) { parent::display($cachable, $urlparams); return $this; } }