| Current Path : /var/www/administrator/components/com_comment/controllers/ |
| Current File : /var/www/administrator/components/com_comment/controllers/customfields.php |
<?php
/**
* @package Com_Hotspots
* @author DanielDimitrov <daniel@compojoom.com>
* @date 23.01.14
*
* @copyright Copyright (C) 2008 - 2013 compojoom.com . All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
defined('_JEXEC') or die('Restricted access');
jimport('joomla.application.component.controlleradmin');
/**
* Class HotspotsControllerCustomfields
*
* @since 4.0
*/
class CcommentControllerCustomfields extends JControllerAdmin
{
protected $option = 'com_comment';
/**
* Proxy for getModel.
*
* @param string $name The name of the model.
* @param string $prefix The prefix for the PHP class name.
* @param array $config The config array
*
* @return JModel
*/
public function getModel($name = 'Customfield', $prefix = 'CcommentModel', $config = array())
{
$model = parent::getModel($name, $prefix, $config);
return $model;
}
}