Your IP : 216.73.216.240
<?php
/**
*----------------------------------------------------------------------------
* iCagenda Events Management Extension for Joomla!
*----------------------------------------------------------------------------
* @version 3.8.0 2019-07-19
*
* @package iCagenda.Admin
* @link https://www.icagenda.com
*
* @author Cyril Rezé
* @copyright (c) 2012-2024 Cyril Rezé / iCagenda. All rights reserved.
* @license GNU General Public License version 3 or later; see LICENSE.txt
*
* @since 2.0.0
*----------------------------------------------------------------------------
*/
defined('_JEXEC') or die;
/**
* Registrations list controller class.
*/
class iCagendaControllerRegistrations extends JControllerAdmin
{
/**
* Proxy for getModel.
*
* @param string $name The model name. Optional.
* @param string $prefix The class prefix. Optional.
* @param array $config The array of possible config values. Optional.
*
* @return JModelLegacy
*
* @since 2.0.0
*/
public function getModel($name = 'Registration', $prefix = 'iCagendaModel', $config = array('ignore_request' => true))
{
return parent::getModel($name, $prefix, $config);
}
}