mirror of
https://github.com/agenceagerix/mod_agx_slideshow.git
synced 2024-12-22 00:18:55 +00:00
19 lines
633 B
PHP
19 lines
633 B
PHP
<?php
|
|
/**
|
|
* @package Joomla.Site
|
|
* @subpackage mod_agx_slideshow
|
|
*
|
|
* @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved.
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
// Include the latest functions only once
|
|
JLoader::register('ModAgxSlideshowHelper', __DIR__ . '/helper.php');
|
|
|
|
$list = ModAgxSlideshowHelper::getList($params);
|
|
$moduleclass_sfx = htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8');
|
|
|
|
require JModuleHelper::getLayoutPath('mod_agx_slideshow', $params->get('layout', 'default'));
|