Server IP : 195.201.23.43 / Your IP : 3.138.86.166 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/kdecoratie/public_html/modules/mod_slideshowck/ |
Upload File : |
<?php /** * @copyright Copyright (C) 2012-2019 Cedric KEIFLIN alias ced1870 * https://www.joomlack.fr * Module Slideshow CK * @license GNU/GPL * */ // no direct access defined('_JEXEC') or die; if ($params->get('slideshowckhikashop_enable', '0') == '1') { if (JFile::exists(JPATH_ROOT . '/plugins/system/slideshowckhikashop/helper/helper_slideshowckhikashop.php')) { require_once JPATH_ROOT . '/plugins/system/slideshowckhikashop/helper/helper_slideshowckhikashop.php'; $items = modSlideshowckhikashopHelper::getItems($params); } else { echo '<p style="color:red;font-weight:bold;">File /plugins/system/slideshowckhikashop/helper/helper_slideshowckhikashop.php not found ! Please download the patch for Slideshow CK - Hikashop on <a href="https://www.joomlack.fr">https://www.joomlack.fr</a></p>'; return false; } } else if ($params->get('slideshowckjoomgallery_enable', '0') == '1') { if (JFile::exists(JPATH_ROOT . '/plugins/system/slideshowckjoomgallery/helper/helper_slideshowckjoomgallery.php')) { require_once JPATH_ROOT . '/plugins/system/slideshowckjoomgallery/helper/helper_slideshowckjoomgallery.php'; $items = modSlideshowckjoomgalleryHelper::getItems($params); } else { echo '<p style="color:red;font-weight:bold;">File /plugins/system/slideshowckjoomgallery/helper/helper_slideshowckjoomgallery.php not found ! Please download the patch for Slideshow CK - Joomgallery on <a href="https://www.joomlack.fr">https://www.joomlack.fr</a></p>'; return false; } } else if ($params->get('slideshowckvirtuemart_enable', '0') == '1') { if (JFile::exists(JPATH_ROOT . '/plugins/system/slideshowckvirtuemart/helper/helper_slideshowckvirtuemart.php')) { require_once JPATH_ROOT . '/plugins/system/slideshowckvirtuemart/helper/helper_slideshowckvirtuemart.php'; $items = modSlideshowckvirtuemartHelper::getItems($params); } else { echo '<p style="color:red;font-weight:bold;">File /plugins/system/slideshowckvirtuemart/helper/helper_slideshowckvirtuemart.php not found ! Please download the patch for Slideshow CK - Virtuemart on <a href="https://www.joomlack.fr">https://www.joomlack.fr</a></p>'; return false; } } else if ($params->get('slideshowckk2_enable', '0') == '1') { if (JFile::exists(JPATH_ROOT . '/plugins/system/slideshowckk2/helper/helper_slideshowckk2.php')) { require_once JPATH_ROOT . '/plugins/system/slideshowckk2/helper/helper_slideshowckk2.php'; $items = modSlideshowckk2Helper::getItems($params); } else { echo '<p style="color:red;font-weight:bold;">File /plugins/system/slideshowckk2/helper/helper_slideshowckk2.php not found ! Please download the patch for Slideshow 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 = modSlideshowckHelper::getItemsFromfolder($params); break; case 'autoloadfolder': $items = modSlideshowckHelper::getItemsAutoloadfolder($params); break; case 'autoloadarticlecategory': $items = modSlideshowckHelper::getItemsAutoloadarticlecategory($params); break; case 'flickr': $items = modSlideshowckHelper::getItemsAutoloadflickr($params); break; case 'googlephotos': include_once(JPATH_SITE. '/plugins/system/slideshowckparams/helper/class-helpersource-google.php'); $items = SlideshowckHelpersourceGoogle::getItems($params); break; default: // $items = modSlideshowckHelper::getItems($params); break; } // if ($params->get('displayorder', 'normal') == 'shuffle') // shuffle($items); }Private