| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/aix/components/com_djcatalog2/views/items/ |
Upload File : |
<?php
/**
* @package DJ-Catalog2
* @copyright Copyright (C) DJ-Extensions.com, All rights reserved.
* @license http://www.gnu.org/licenses GNU/GPL
* @author url: http://dj-extensions.com
* @author email contact@dj-extensions.com
*/
defined ('_JEXEC') or die('Restricted access');
use Joomla\CMS\MVC\View\HtmlView;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;
jimport('joomla.application.component.view');
jimport('joomla.html.pagination');
class DJCatalog2ViewItems extends HtmlView {
function display($tpl = null) {
$app = Factory::getApplication();
$document= Factory::getDocument();
$model = $this->getModel();
$config = Factory::getConfig();
$siteEmail = $config->get('mailfrom');
$fromName = $config->get('fromname');
$feedEmail = $config->get('feed_email', 'author');
$document->editor = $fromName;
if ($feedEmail != 'none')
{
$document->editorEmail = $siteEmail;
}
$menus = $app->getMenu('site');
$menu = $menus->getActive();
$mOption = (empty($menu->query['option'])) ? null : $menu->query['option'];
$mCatid = (empty($menu->query['cid'])) ? null : (int)$menu->query['cid'];
$mProdid = (empty($menu->query['pid'])) ? null : (int)$menu->query['pid'];
$filter_catid = $app->input->get( 'cid',null,'int' );
if ($filter_catid === null && $mOption == 'com_djcatalog2' && $mCatid) {
$filter_catid = $mCatid;
$app->input->set('cid', $filter_catid);
}
$filter_producerid = $app->input->get( 'pid',null,'string' );
if ($filter_producerid === null && $mOption == 'com_djcatalog2' && $mProdid) {
$filter_producerid = $mProdid;
$app->input->set('pid', $filter_producerid);
}
$params = Djcatalog2Helper::getParams();
$params->set('product_catalogue', false);
$filter_order = $params->get('rss_items_default_order','i.date');
$filter_order_Dir = $params->get('rss_items_default_order_dir','desc');
$limitstart = $app->input->get('limitstart', 0, 'int');
$limit_items_show = $params->get('rss_limit_items_show', $config->get('feed_limit', 10));
$app->input->set('limit', $limit_items_show);
$dispatcher = Joomla\CMS\Factory::getApplication()->getDispatcher();
$categories = Djc2Categories::getInstance(array('state'=>'1'));
// current category
$category = $categories->get((int) $app->input->get('cid',0,'default'));
$subcategories = null;
if (!empty($category)) {
$subcategories = $category->getChildren();
}
/* If Cateogory not published set 404 */
if (($category && $category->id > 0 && $category->published == 0) || empty($category)) {
throw new Exception(Text::_('COM_DJCATALOG2_PRODUCT_NOT_FOUND'), 404);
}
$title = $params->get('page_title', '');
if ($menu && ($menu->query['option'] != 'com_djcatalog2' || $menu->query['view'] != 'items' || $mCatid != $category->id)) {
if (!empty($category->metatitle)) {
$title = $category->metatitle;
}
else if ($category->name && $category->id > 0) {
$title = $category->name;
}
}
if (empty($title)) {
$title = $config->get('sitename');
}
$document->setTitle($title);
$rows = $model->getItems();
$document->link = Route::_(DJCatalogHelperRoute::getCategoryRoute($category->catslug));
foreach ($rows as $row)
{
// Strip html from feed item title
$title = $this->escape($row->name);
$title = html_entity_decode($title, ENT_COMPAT, 'UTF-8');
// Compute the article slug
$row->slug = $row->alias ? ($row->id . ':' . $row->alias) : $row->id;
// Url link to article
$link = Route::_(DJCatalogHelperRoute::getItemRoute($row->slug, $category->id == 0 ? $row->catslug : $category->catslug));
// Get description, author and date
$date = $row->created;
// Load individual item creator class
$item = new JFeedItem;
$item->title = $title;
$item->link = $link;
$item->date = $date;
$item->author = $row->author;
$item->category = ($category->id == 0) ? $row->category : $category->name;
//$item->authorEmail = $siteEmail;
if ($feedEmail == 'site')
{
$item->authorEmail = $siteEmail;
}
else if($feedEmail === 'author')
{
$item->authorEmail = $row->author_email;
}
$description = '';
if ($row->item_image && (int)$params->get('rss_image_link_item', '1')) {
//$item->image = new JFeedImage();
//$item->image->url = DJCatalog2ImageHelper::getImageUrl($row->item_image,'small');
//$item->image->link = $item->link;
//$item->image->title = $row->image_caption;
$description .= '<img src="'.DJCatalog2ImageHelper::getImageUrl($row->image_fullpath,'small').'" alt="'.$row->image_caption.'"/>';
}
if ($params->get('rss_description_type', '1') != '0')
{
$description .= ($params->get('rss_description_type', '1') == '1' && $row->intro_desc) ? $row->intro_desc : $row->description;
if ($params->get('rss_showreadmore_item', '1') ) {
$description .= '<p class="feed-readmore"><a target="_blank" href ="' . $item->link . '">' . Text::_('COM_DJCATALOG2_READMORE') . '</a></p>';
}
}
// Load item description and add div
$item->description = '<div class="feed-description">'.$description.'</div>';
// Loads item info into rss array
$document->addItem($item);
}
}
}