www_archline_hu/deployed/smartshoutbox/components/com_smartshoutbox/smartshoutbox.php
LÁZÁR Imre AI Agent 5b8634a0d5 feat(deployed): add Smart Shoutbox 3.0.6 (no-source, vetted live)
Smart Shoutbox (The Krotek); no repo -> deployed files.

Signed-off-by: LÁZÁR Imre <imre@illusion.hu>
Assisted-by: claude-code@claude-opus-4-8
2026-07-16 11:24:46 +02:00

24 lines
848 B
PHP

<?php
/*------------------------------------------------------------------------
# Smart Shoutbox
# ------------------------------------------------------------------------
# The Krotek
# Copyright (C) 2011-2018 The Krotek. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Website: https://thekrotek.com
# Support: support@thekrotek.com
-------------------------------------------------------------------------*/
defined('_JEXEC') or die('Restricted access');
require_once(JPATH_SITE.'/components/com_smartshoutbox/system/loader.php');
if (!class_exists('SmartShoutboxHelper')) {
include(JPATH_SITE.'/components/'.SCOMPONENT.'/helpers/helper.php');
}
$controller = JControllerLegacy::getInstance(SMAINCLASS);
$controller->execute(JFactory::getApplication()->input->get('task'));
$controller->redirect();
?>