Your IP : 216.73.216.219


Current Path : /home/pteabiscqq/www/components/com_advportfoliopro/views/project/tmpl/
Upload File :
Current File : /home/pteabiscqq/www/components/com_advportfoliopro/views/project/tmpl/media_video.php

<?php
/**
 * @copyright	Copyright (c) 2013 Skyline Technology Ltd (http://extstore.com). All rights reserved.
 * @license		http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 */

// No direct access.
defined('_JEXEC') or die;

if ($this->item->video_link) {
	require JPATH_ADMINISTRATOR . '/components/com_advportfoliopro/helpers/video.php';

	$href			= AdvPortfolioProVideoHelper::getEmbed($this->item->video_link);

	$video			= new stdClass();
	$video->href	= $href;
	$video->type	= 'iframe';

	echo json_encode($video);
}