Your IP : 216.73.216.11


Current Path : /home/digilove/www/plugins/system/ytshortcodes/shortcodes/points_item/
Upload File :
Current File : /home/digilove/www/plugins/system/ytshortcodes/shortcodes/points_item/shortcode.php

<?php 
/*
* @package   YouTech Shortcodes
* @author    YouTech Company http://smartaddons.com/
* @copyright Copyright (C) 2015 YouTech Company
* @license   http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
defined('_JEXEC') or die;
function points_itemYTShortcode($atts, $content = null){
	global $no_number;
	//set these positions of interest points according to your product image
	extract(ytshortcode_atts(array(
		"x"		=> '',
		"y"		=> '',
		"position" => '',
	), $atts));
	$css ='';
	$id = uniqid('points_item_').rand().time();
	$css .= "#".$id.".yt-single-point{top:".$y."%; left: ".$x."%; list-style:none}";
	$doc = JFactory::getDocument();
	$doc->addStyleDeclaration($css);
	$points_item  =  "<li class='yt-single-point' id='".$id."'>";
	$points_item .=  "<a class='yt-img-replace' href='#0'>More</a>";
	$points_item .=  "<div class='yt-more-info yt-".$position."'>" ;
	$points_item .=  parse_shortcode(str_replace(array("<br/>", "<br>", "<br />"), " ", $content)) ;
	$points_item .=  "<a href='#0' class='yt-close-info yt-img-replace'>Close</a></div> </li>";

	return $points_item;
}
?>