Your IP : 216.73.216.11


Current Path : /home/digilove/www/plugins/system/ytshortcodes/shortcodes/blockquote/
Upload File :
Current File : /home/digilove/www/plugins/system/ytshortcodes/shortcodes/blockquote/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 blockquoteYTShortcode($atts, $content = null){
	extract(ytshortcode_atts(array(
		"yt_title"  => '',
		"align"  => 'none',
		'border' =>'#666',
		'color'  =>'#fff',
		'width'  =>'auto',
	), $atts));
	$css = '';
	JHtml::stylesheet(JUri::base()."plugins/system/ytshortcodes/shortcodes/blockquote/css/blockquote.css");
	$source_yt_title = (($yt_title != '') ? "<small>".$yt_title. "</small>" : '');
	$id = uniqid('blockquote_').rand().time(); 
	
	$css .= ".yt-boxquote.".$id."{width:".$width."%;border-color:".$border.";color:".$color."}";
	$doc = JFactory::getDocument();
	$doc->addStyleDeclaration($css);
	return '<blockquote class="yt-clearfix yt-boxquote pull-'. $align.' '.$id.'">' . parse_shortcode(str_replace(array("<br/>", "<br>", "<br />"), " ", $content)) . $source_yt_title. '</blockquote>';
}
?>