Your IP : 216.73.216.240


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

<?php
/**
 *----------------------------------------------------------------------------
 * iCagenda     Events Management Extension for Joomla!
 *----------------------------------------------------------------------------
 * @version     4.0.0 2025-12-21
 *
 * @package     iCagenda.Admin
 * @subpackage  src.Utilities.Media
 * @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.8.19
 *----------------------------------------------------------------------------
*/

namespace iCutilities\Media;

\defined('_JEXEC') or die;

use Joomla\CMS\Component\ComponentHelper;
use Joomla\CMS\Factory;
use Joomla\Filesystem\Folder;

/**
 * class icagendaMedia
 */
class Media
{
	/**
	 * Return the iCagenda images path
	 */
	static public function iCagendaImagesPath()
	{
		// Get media path
		$params_media = ComponentHelper::getParams('com_media');
		$image_path   = $params_media->get('image_path', 'images');

		if (Factory::getApplication()->isClient('administrator')) {
			$image_path_control = '../' . $image_path;
		} else {
			$image_path_control = $image_path;
		}

		// Paths to icagenda folder
		$imagesPath = rtrim($image_path, "/") . '/icagenda';

		if (is_dir($image_path_control)) {
			return $imagesPath;
		} else {
			return 'images/icagenda';
		}
	}

	/**
	 * Return the iCagenda thumbs path
	 */
	static public function iCagendaThumbsPath()
	{
		$image_path = self::iCagendaImagesPath();

		if (Factory::getApplication()->isClient('administrator')) {
			$image_path_control = '../' . $image_path;
		} else {
			$image_path_control = $image_path;
		}

		// Paths to thumbs folder
		$thumbsPath = $image_path . '/thumbs';

		$thumbs_path_control = $image_path_control . '/thumbs';

		if (is_dir($thumbs_path_control)) {
			return $thumbsPath;
		} else {
			return 'images/icagenda/thumbs';
		}
	}
}