Your IP : 10.10.0.253


Current Path : /var/www/components/com_yendifvideoshare/controllers/
Upload File :
Current File : /var/www/components/com_yendifvideoshare/controllers/video.php

<?php
/**
 * @version    1.2.9
 * @package    Com_YendifVideoShare
 * @author     PluginsWare Interactive Pvt. Ltd <admin@yendifplayer.com>
 * @copyright  Copyright (c) 2012 - 2021 PluginsWare Interactive Pvt. Ltd. All Rights Reserved.
 * @license    GNU General Public License version 2 or later; see LICENSE.txt
 */

// Prevent direct access
defined( '_JEXEC' ) or die( 'Restricted access' );

class YendifVideoShareControllerVideo extends YendifVideoShareController {

	public function video() {			
	    $model = $this->getModel( 'video' );
		
	    $view = $this->getView( 'video', 'html' );        		
        $view->setModel( $model, true );	
		$view->setLayout( 'default' );
		$view->display();		
	}
			
}