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_images.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;

$images	= array();

foreach ($this->item->images as $image) {
	$obj			= new stdClass();
	$obj->href		= JHtml::_('advportfoliopro.image', $image->image);
	$obj->title		= $image->title;

	$images[]		= $obj;
}

echo json_encode($images);