%PDF- %PDF-
| Direktori : /home/lightco1/www/lightingrepublic.com.au/components/com_allvideoshare/controllers/ |
| Current File : /home/lightco1/www/lightingrepublic.com.au/components/com_allvideoshare/controllers/search.php |
<?php
/*
* @version $Id: search.php 2.2.0 2014-01-18 $
* @package Joomla
* @copyright Copyright (C) 2012-2014 MrVinoth
* @license GNU/GPL http://www.gnu.org/licenses/gpl-2.0.html
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
// Import libraries
require_once( JPATH_ROOT.DS.'administrator'.DS.'components'.DS.'com_allvideoshare'.DS.'controllers'.DS.'controller.php' );
class AllVideoShareControllerSearch extends AllVideoShareController {
function __construct() {
parent::__construct();
}
function search() {
$document = JFactory::getDocument();
$vType = $document->getType();
$view = $this->getView('search', $vType);
$model = $this->getModel('search');
$view->setModel($model, true);
$view->setLayout('default');
$view->display();
}
}