Your IP : 216.73.216.240


Current Path : /home/juvelize/saulnois/administrator/components/com_icagenda/src/Utilities/Event/
Upload File :
Current File : /home/juvelize/saulnois/administrator/components/com_icagenda/src/Utilities/Event/EventData.php

<?php
/**
 *----------------------------------------------------------------------------
 * iCagenda     Events Management Extension for Joomla!
 *----------------------------------------------------------------------------
 * @version     4.0.4 2026-03-13
 *
 * @package     iCagenda.Admin
 * @subpackage  src.Utilities.Event
 * @link        https://www.joomlic.com
 *
 * @author      Cyril Reze
 * @copyright   (c) 2012-2026 Cyril Reze / JoomliC. All rights reserved.
 * @license     GNU General Public License version 3 or later; see LICENSE.txt
 *
 * @since       3.6.0
 *----------------------------------------------------------------------------
*/

namespace iCutilities\Event;

\defined('_JEXEC') or die;

use Joomla\CMS\Factory;

/**
 * class icagendaEventData
 */
class EventData
{
	/**
	 * Loads the Event's custom fields for this item
	 *
	 * @return  object list.
	 */
	static public function loadEventCustomFields($id = null)
	{
		// Get the database connector.
		$db = Factory::getContainer()->get(\Joomla\Database\DatabaseInterface::class);

		// Get the query from the database connector.
		$query = (method_exists($db, 'createQuery') ? $db->createQuery() : $db->getQuery(true));

		// Build the query programatically (using chaining if desired).
		$query->select('cfd.*, cf.*')
			// Use the qn alias for the quoteName method to quote table names.
			->from($db->qn('#__icagenda_customfields_data') . ' AS cfd');

		$query->leftJoin('#__icagenda_customfields AS cf ON cf.slug = cfd.slug');

		$query->where($db->qn('cfd.parent_id') . ' = ' . (int) $id);
		$query->where($db->qn('cfd.parent_form') . ' = 2');
		$query->where($db->qn('cf.parent_form') . ' = 2');
		$query->where($db->qn('cfd.state') . ' = 1');
		$query->where($db->qn('cf.state') . ' = 1');
		$query->where($db->qn('cfd.value') . ' NOT IN ("", "{}")');
		$query->order('cf.ordering ASC');

		// Tell the database connector what query to run.
		$db->setQuery($query);

		// Invoke the query or data retrieval helper.
		return $db->loadObjectList();
	}
}