| Server IP : 87.98.154.146 / Your IP : 216.73.216.101 Web Server : Apache System : Linux webm005.cluster126.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : bsiadvisil ( 110003) PHP Version : 7.3.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/bsiadvisil/www/templates/corporex_helix3/html/mod_articles_latest/ |
Upload File : |
<?php
/**
* @package Joomla.Site
* @subpackage mod_articles_latest
*
* @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
?>
<div class="latestnews<?php echo $moduleclass_sfx; ?>">
<?php foreach ($list as $item) {
$attrbs = json_decode($item->attribs);
$images = json_decode($item->images);
$intro_image = '';
if(isset($attrbs->spfeatured_image) && $attrbs->spfeatured_image != '') {
$intro_image = $attrbs->spfeatured_image;
$basename = basename($intro_image);
$list_image = JPATH_ROOT . '/' . dirname($intro_image) . '/' . JFile::stripExt($basename) . '_thumbnail.' . JFile::getExt($basename);
if(file_exists($list_image)) {
$thumb_image = JURI::root(true) . '/' . dirname($intro_image) . '/' . JFile::stripExt($basename) . '_thumbnail.' . JFile::getExt($basename);
}
} elseif(isset($images->image_intro) && !empty($images->image_intro)) {
$thumb_image = $images->image_intro;
}
?>
<div itemscope itemtype="http://schema.org/Article">
<?php if (!empty($thumb_image)) {?>
<div class="img-responsive article-list-img">
<img src="<?php echo $thumb_image; ?>">
</div>
<?php } ?>
<a href="<?php echo $item->link; ?>" class="corporex-news-title" itemprop="url">
<span itemprop="name">
<?php echo $item->title; ?>
</span>
</a>
</div>
<?php } ?>
</div>