| Server IP : 87.98.231.4 / Your IP : 216.73.217.178 [ Web Server : Apache System : Linux webm007.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : grupmartgn ( 667608) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/grupmartgn/elanartcrafts/modules/mod_carouselck/ |
Upload File : |
<?php
/**
* @copyright Copyright (C) 2012-2019 Cedric KEIFLIN alias ced1870
* https://www.joomlack.fr
* Module Carousel CK
* @license GNU/GPL
* */
// no direct access
defined('_JEXEC') or die;
if ($params->get('carouselckhikashop_enable', '0') == '1') {
if (JFile::exists(JPATH_ROOT . '/plugins/system/carouselckhikashop/helper/helper_carouselckhikashop.php')) {
require_once JPATH_ROOT . '/plugins/system/carouselckhikashop/helper/helper_carouselckhikashop.php';
$items = modCarouselckhikashopHelper::getItems($params);
} else {
echo '<p style="color:red;font-weight:bold;">File /plugins/system/carouselckhikashop/helper/helper_carouselckhikashop.php not found ! Please download the patch for Carousel CK - Hikashop on <a href="https://www.joomlack.fr">https://www.joomlack.fr</a></p>';
return false;
}
} else if ($params->get('carouselckjoomgallery_enable', '0') == '1') {
if (JFile::exists(JPATH_ROOT . '/plugins/system/carouselckjoomgallery/helper/helper_carouselckjoomgallery.php')) {
require_once JPATH_ROOT . '/plugins/system/carouselckjoomgallery/helper/helper_carouselckjoomgallery.php';
$items = modCarouselckjoomgalleryHelper::getItems($params);
} else {
echo '<p style="color:red;font-weight:bold;">File /plugins/system/carouselckjoomgallery/helper/helper_carouselckjoomgallery.php not found ! Please download the patch for Carousel CK - Joomgallery on <a href="https://www.joomlack.fr">https://www.joomlack.fr</a></p>';
return false;
}
} else if ($params->get('carouselckvirtuemart_enable', '0') == '1') {
if (JFile::exists(JPATH_ROOT . '/plugins/system/carouselckvirtuemart/helper/helper_carouselckvirtuemart.php')) {
require_once JPATH_ROOT . '/plugins/system/carouselckvirtuemart/helper/helper_carouselckvirtuemart.php';
$items = modCarouselckvirtuemartHelper::getItems($params);
} else {
echo '<p style="color:red;font-weight:bold;">File /plugins/system/carouselckvirtuemart/helper/helper_carouselckvirtuemart.php not found ! Please download the patch for Carousel CK - Virtuemart on <a href="https://www.joomlack.fr">https://www.joomlack.fr</a></p>';
return false;
}
} else if ($params->get('carouselckk2_enable', '0') == '1') {
if (JFile::exists(JPATH_ROOT . '/plugins/system/carouselckk2/helper/helper_carouselckk2.php')) {
require_once JPATH_ROOT . '/plugins/system/carouselckk2/helper/helper_carouselckk2.php';
$items = modCarouselckk2Helper::getItems($params);
} else {
echo '<p style="color:red;font-weight:bold;">File /plugins/system/carouselckk2/helper/helper_carouselckk2.php not found ! Please download the patch for Carousel CK - K2 on <a href="https://www.joomlack.fr">https://www.joomlack.fr</a></p>';
return false;
}
}
else {
switch ($params->get('slidesssource', 'slidesmanager')) {
case 'folder':
$items = modCarouselckHelper::getItemsFromfolder($params);
break;
case 'autoloadfolder':
$items = modCarouselckHelper::getItemsAutoloadfolder($params);
break;
case 'autoloadarticlecategory':
$items = modCarouselckHelper::getItemsAutoloadarticlecategory($params);
break;
case 'flickr':
$items = modCarouselckHelper::getItemsAutoloadflickr($params);
break;
case 'googlephotos':
include_once(JPATH_SITE. '/plugins/system/carouselckparams/helper/class-helpersource-google.php');
$items = CarouselckHelpersourceGoogle::getItems($params);
break;
default:
// $items = modCarouselckHelper::getItems($params);
break;
}
// if ($params->get('displayorder', 'normal') == 'shuffle')
// shuffle($items);
}