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
24 lines
848 B
PHP
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();
|
|
|
|
?>
|