HEX
Server: Apache
System: Linux scp1.abinfocom.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: confeduphaar (1010)
PHP: 8.1.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/confeduphaar/backip-old-files/components/com_jevents/views/modlatest/tmpl/rss.php
<?php
/**
 * JEvents Component for Joomla! 3.x
 *
 * @version     $Id: rss.php 3575 2012-05-01 14:06:28Z geraintedwards $
 * @package     JEvents
 * @copyright   Copyright (C) 2008-2020 GWESystems Ltd
 * @license     GNU/GPLv2, see http://www.gnu.org/licenses/gpl-2.0.html
 * @link        http://www.jevents.net
 */

// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die();

use Joomla\CMS\Language\Text;
use Joomla\CMS\Document\Feed\FeedImage;
use Joomla\CMS\Document\Feed\FeedItem;
use Joomla\CMS\Filter\OutputFilter;
use Joomla\String\StringHelper;
use Joomla\CMS\Factory;
use Joomla\CMS\Router\Route;

// Setup the document
$doc = Factory::getDocument();

$doc->setLink($this->info['link']);
$doc->setBase($this->info['base']);
$doc->setTitle($this->info['title']);
$doc->setDescription($this->info['description']);

$docimage              = new FeedImage();
$docimage->description = $this->info['description'];
$docimage->title       = $this->info['title'];
$docimage->url         = $this->info['image_url'];
$docimage->link        = $this->info['imagelink'];
$doc->image            = $docimage;

foreach ($this->eventsByRelDay as $relDay => $ebrd)
{
	foreach ($ebrd as $row)
	{
		// title for particular item
		$item_title = htmlspecialchars($row->title());
		$item_title = html_entity_decode($item_title);

		// url link to article
		$startDate = $row->publish_up();
		//$eventDate = JevDate::mktime(StringHelper::substr($startDate,11,2),StringHelper::substr($startDate,14,2), StringHelper::substr($startDate,17,2),$this->jeventCalObject->now_m,$this->jeventCalObject->now_d + $relDay,$this->jeventCalObject->now_Y);
		$eventDate = JevDate::strtotime($startDate);
		$datenow   = JEVHelper::getNow();
		if ($relDay > 0)
		{
			$eventDate = JevDate::strtotime($datenow->toFormat('%Y-%m-%d ') . JevDate::strftime('%H:%M', $eventDate) . " +$relDay days");
		}
		else
		{
			$eventDate = JevDate::strtotime($datenow->toFormat('%Y-%m-%d ') . JevDate::strftime('%H:%M', $eventDate) . " $relDay days");
		}


		$targetid  = $this->modparams->get("target_itemid", 0);
		$link      = $row->viewDetailLink(date("Y", $eventDate), date("m", $eventDate), date("d", $eventDate), false, $targetid);
		$link      = str_replace("&tmpl=component", "", $link);
		$item_link = Route::_($link . $this->jeventCalObject->datamodel->getCatidsOutLink());

		// removes all formating from the intro text for the description text
		$item_description = $row->content();

		// remove dodgy border e.g. "diamond/question mark"
		$item_description = preg_replace('#border=[\"\'][^0-9]*[\"\']#i', '', $item_description);

		if ($this->info['limit_text'])
		{
			if ($this->info['text_length'])
			{
				$item_description = OutputFilter::cleanText($item_description);
				// limits description text to x words
				$item_description_array = explode(' ', $item_description);
				$count                  = count($item_description_array);
				if ($count > $this->info['text_length'])
				{
					$item_description = '';
					for ($a = 0; $a < $this->info['text_length']; $a++)
					{
						$item_description .= $item_description_array[$a] . ' ';
					}
					$item_description = trim($item_description);
					$item_description .= '...';
				}
			}
			else
			{
				// do not include description when text_length = 0
				$item_description = null;
			}
		}
		else
		{
			// this can lead to double CDATA wrapping which is a problem in Firefox 13+
			//$item_description = "<![CDATA[$item_description]]>"  ;
		}

		// type for particular item - category name
		$item_type = $row->getCategoryName();
		/*
		// You could incorporate these fields into the description for the RSS output
		// organizer for particular item
		$item_organizer = htmlspecialchars( $row->contact_info() );
		$item_organizer = html_entity_decode( $item_organizer );
		// location for particular item
		$item_location = htmlspecialchars( $row->location() );
		$item_location = html_entity_decode( $item_location );
		// start date for particular item
		$item_startdate = htmlspecialchars( $row->publish_up());
		// end date for particular item
		$item_enddate = htmlspecialchars( $row->publish_down() );
		if (isset($row->_thumbimg1) && $row->_thumbimg1!=""){
			$item_description = $row->_thumbimg1. "<br/>".$item_description;
		}
		*/

		// load individual item creator class
		$item = new FeedItem();
		// item info

		$temptime    = new JevDate($eventDate);
		if ($row->alldayevent())
		{
			$temptime    = new JevDate($eventDate);
			$item->title = $temptime->toFormat(Text::_('JEV_RSS_DATE')) . " : " . $item_title;
		}
		else
		{
			$temptime    = new JevDate($eventDate);
			$item->title = $temptime->toFormat(Text::_('JEV_RSS_DATETIME')) . " : " . $item_title;
		}
		$item->link        = $item_link;
		$item->description = $item_description;
		$item->category    = $item_type;

		$eventcreated = new JevDate($row->created());
		$item->date   = $eventcreated->toUnix(true);

		// add item info to RSS document
		$doc->addItem($item);
	}
}