| Current Path : /var/www/administrator/components/com_breezingforms/ |
| Current File : /var/www/administrator/components/com_breezingforms/controller.php |
<?php
/**
* @package BreezingForms
* @author Markus Bopp
* @link https://www.crosstec.org
* @license GNU/GPL
*/
defined('_JEXEC') or die;
class BreezingformsController extends JControllerLegacy
{
/**
* @var string The default view.
* @since 1.6
*/
protected $default_view = '';
/**
* Method to display a view.
*
* @param boolean If true, the view output will be cached
* @param array An array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}.
*
* @return JController This object to support chaining.
* @since 1.5
*/
public function display($cachable = false, $urlparams = false)
{
parent::display();
return $this;
}
}