uawdijnntqw1x1x1
IP : 216.73.216.219
Hostname : webm015.cluster127.gra.hosting.ovh.net
Kernel : Linux webm015.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
pteabiscqq
/
www
/
188ee
/
..
/
modules
/
mod_quix
/
helper.php
/
/
<?php /** * @package Quix * @author ThemeXpert http://www.themexpert.com * @copyright Copyright (c) 2010-2015 ThemeXpert. All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @since 1.0.0 */ defined('_JEXEC') or die; /** * Helper for mod_breadcrumbs * * @since 1.5 */ class ModQuixHelper { /** * renderShortCode * * @param \Joomla\Registry\Registry &$params module parameters * * @return html */ public static function renderShortCode(&$params) { $id = $params->get('id'); if (!$id) { return '<p>'.JText::_('MOD_QUIX_INVALID_ID').'</p >'; } jimport('quix.app.bootstrap'); jimport('quix.app.init'); $collection = qxGetCollectionInfoById($id); if (!$collection) { return '<p>'.JText::_('MOD_QUIX_INVALID_LIBRARY').'</p >'; } // reset after loaded Assets::resetObject(); // load common assets quixRenderhead(); // rander main item $html = quixRenderItem($collection); // load output assets Assets::load(); // load quixtrap from system plugin plgSystemQuix::addQuixTrapCSS(); return $html; } }
/home/pteabiscqq/www/188ee/../modules/mod_quix/helper.php