Current Path :
/
home
/
develito
/
public_html
/
components
/
com_raforms
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/public_html/components/com_raforms/controller.php
<?php /* ------------------------------------------------------------------------ # com_raforms - rootArea Forms # ------------------------------------------------------------------------ # author Markus Döhla # copyright Copyright (C) 2012 rootarea.de. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL # @license - Please read policy about plugins development in administrator/components/com_raforms/license-plugins.txt carefully # @license - Additional EULA on www.rootarea.de DOES NOT apply to ANY lite packages # Websites: http://www.rootarea.de # Technical Support: Forum - http://www.rootarea.de/en/forum ------------------------------------------------------------------------- */ defined('_JEXEC') or die('Restricted Access'); jimport('joomla.application.component.controller'); class RAformsController extends JControllerLegacy { protected $default_view = 'formresultlist'; function display($cacheable = false) { // call parent behavior parent::display($cacheable); return $this; } } ?>