Your IP : 216.73.216.240


Current Path : /home/juvelize/martine/plugins/system/helix/shortcodes/
Upload File :
Current File : /home/juvelize/martine/plugins/system/helix/shortcodes/testimonial.php

<?php
/**
 * @package Helix Framework
 * @author JoomShaper http://www.joomshaper.com
 * @copyright Copyright (c) 2010 - 2014 JoomShaper
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
*/
//no direct accees
defined ('_JEXEC') or die('resticted aceess');

//[Testimonial]
if(!function_exists('testimonial_sc')) {
	function testimonial_sc( $atts, $content="" ){

		extract(shortcode_atts(array(
					'name' => 'John Doe',
					'designation' => '',
					'email' => 'email@email.com',
					'url' => '',
					'img'=> ''
					
				), $atts));

		ob_start();
	?>
	<div class="media testimonial">
		<div class="pull-left">
			<i style="font-size:48px" class="icon-quote-<?php echo (Helix::direction()=='rtl')?'right':'left'; ?>"></i>
		</div>
		<div class="media-body">
			<div class="testimonial-content">
				<?php echo do_shortcode($content); ?>
			</div>
			<div style="margin-top:5px" class="media testimonial-author">
				<div class="pull-left">
					<img class="img-circle" alt="<?php echo $name; ?>" src="//1.gravatar.com/avatar/<?php echo md5($email); ?>?s=68&amp;r=pg&amp;d=mm" width="68">
				</div>
				<div class="media-body">
					<strong><?php echo $name; ?></strong>
					<br />
					<?php echo $designation; ?>
					<br/>
					<a href="<?php echo $url; ?>"><?php echo $url; ?></a>
				</div>
			</div>
		</div>
	</div>
	<?php 

		return ob_get_clean();
	}
	add_shortcode( 'testimonial', 'testimonial_sc' );
}