Beispiel #1
0
			<?php 
if ($system->config->get('main_facebook_like') && $system->config->get('main_facebook_like_layout') == 'standard' && $system->config->get('integrations_facebook_show_in_listing')) {
    ?>
				<?php 
    echo $this->fetch('facebook.standard.php', array('facebook' => $row->facebookLike));
    ?>
			<?php 
}
?>

			<!-- Load bottom social buttons -->
			<?php 
if ($system->config->get('main_socialbutton_position') == 'bottom') {
    ?>
				<?php 
    echo EasyBlogHelper::showSocialButton($row, true);
    ?>
			<?php 
}
?>

			<?php 
if ($this->getParam('show_last_modified')) {
    ?>
				<!-- Modified date -->
				<span class="blog-modified-date">
					<?php 
    echo JText::_('COM_EASYBLOG_LAST_MODIFIED');
    ?>
					<?php 
    echo JText::_('COM_EASYBLOG_ON');
Beispiel #2
0
		<?php 
if ($this->getparam('show_tags')) {
    ?>
			<?php 
    echo $this->fetch('tags.item.php', array('tags' => $tags));
    ?>
		<?php 
}
?>

		<?php 
if ($system->config->get('main_socialbutton_position') == 'bottom') {
    ?>
			<?php 
    echo EasyBlogHelper::showSocialButton($blog);
    ?>
		<?php 
}
?>

		<!-- Standard facebook like button needs to be at the bottom -->
		<?php 
if ($system->config->get('main_facebook_like') && $system->config->get('main_facebook_like_layout') == 'standard') {
    ?>
			<?php 
    echo $this->fetch('facebook.standard.php', array('facebook' => $facebookLike));
    ?>
			<div class="clear"></div>
		<?php 
}