We have to customize this module , but when we do, the module has a codification error , we donĀ“t find the error.
Any Idea?
Thanks.
<?php
/**
* @package EasyBlog
* @copyright Copyright (C) 2010 Stack Ideas Private Limited. All rights reserved.
* @license GNU/GPL, see LICENSE.php
*
* EasyBlog is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
defined('_JEXEC') or die('Restricted access');
?>
<?php if( $params->get( 'enableratings' ) )
{
$disabled = false;
}
else
{
$disabled = true;
}?>
<div class="ezb-mod ezblog-relatedpost<?php echo $params->get( 'moduleclass_sfx' ) ?>">
<!-- Entries -->
<?php if( $posts ){ ?>
<div class="ezb-mod">
<?php foreach( $posts as $post ){ ?>
<?php
$itemId = modRelatedPostHelper::_getMenuItemId($post, $params);
$url = EasyBlogRouter::_('index.php?option=com_easyblog&view=entry&id=' . $post->id . $itemId );
$posterURL = EasyBlogRouter::_( 'index.php?option=com_easyblog&view=blogger&layout=listings&id=' . $post->author->id . $itemId );
$posterName = $post->author->getName();
?>
<div class="mod-item">
<a class="box-link" href="/<?php echo $url; ?>"> </a>
<?php $backgroungImage = str_replace(" ", "%20", $post->getImage()->getSource('related')); ?>
<div class="back-image" style="background-image: url('/<?php echo $backgroungImage;?>'); background-size:cover">
<div class="box-overlay"></div>
<div class="mod-post-title">
<a href="/<?php echo $url; ?>"><?php echo $post->title;?></a>
</div>
<?php if( $params->get( 'showcategory') ){ ?>
<div class="mod-post-type">
<a href="/<?php echo EasyBlogRouter::_( 'index.php?option=com_easyblog&view=categories&layout=listings&id=' . $post->category_id . $itemId );?>"><?php echo $post->getCategoryName();?></a>
</div>
<?php } ?>
<?php if( $params->get( 'showintro' , '-1' ) != '-1' ){ ?>
<div class="mod-post-content clearfix">
<?php if( $post->protect ){ ?>
<?php echo $post->content; ?>
<?php } else { ?>
<?php echo $post->summary;?>
<?php } ?>
</div>
<?php } ?>
<!-- Blog post actions -->
<?php if( $params->get( 'showcommentcount' , 0 ) || $params->get( 'showhits' , 0 ) || $params->get( 'showreadmore' , true ) ){ ?>
<div class="mod-post-meta small">
<?php if($params->get('showcommentcount', 0)) : ?>
<span class="post-comments">
<a href="/<?php echo $url;?>"><?php echo JText::_( 'MOD_EASYBLOGRELATED_COMMENTS' ); ?> (<?php echo $post->commentCount;?>)</a>
</span>
<?php endif; ?>
<?php if( $params->get( 'showhits' , true ) ): ?>
<span class="post-hit">
<a href="/<?php echo $url;?>"><?php echo JText::_( 'MOD_EASYBLOGRELATED_HITS' );?> (<?php echo $post->hits;?>)</a>
</span>
<?php endif; ?>
</div>
<?php } ?>
</div>
</div>
<?php } ?>
</div>
<?php } else { ?>
<?php echo JText::_( 'MOD_EASYBLOGRELATED_NO_POST'); ?>
<?php } ?>
</div>
Any Idea?
Thanks.