components/com_akeeba (frontend) — the admin side was added earlier; this completes the module. Signed-off-by: LÁZÁR Imre <imre@illusion.hu> Assisted-by: claude-code@claude-opus-4-8
19 lines
522 B
PHP
19 lines
522 B
PHP
<?php
|
|
/**
|
|
* @package AkeebaBackup
|
|
* @copyright Copyright (c)2006-2018 Nicholas K. Dionysopoulos / Akeeba Ltd
|
|
* @license GNU General Public License version 3, or later
|
|
*/
|
|
|
|
// Protect from unauthorized access
|
|
defined('_JEXEC') or die();
|
|
|
|
JDEBUG ? define('AKEEBADEBUG', 1) : null;
|
|
|
|
if (!defined('FOF30_INCLUDED') && !@include_once(JPATH_LIBRARIES . '/fof30/include.php'))
|
|
{
|
|
throw new RuntimeException('FOF 3.0 is not installed', 500);
|
|
}
|
|
|
|
FOF30\Container\Container::getInstance('com_akeeba')->dispatcher->dispatch();
|