Akeeba Backup Core (Akeeba Ltd) + FOF 2.4.3/FOF30 3.3.4/FEF libraries; exact 6.1.1 not publicly downloadable -> deployed files (code only, no backup archives). Signed-off-by: LÁZÁR Imre <imre@illusion.hu> Assisted-by: claude-code@claude-opus-4-8
29 lines
653 B
PHP
29 lines
653 B
PHP
<?php
|
|
/**
|
|
* @package FrameworkOnFramework
|
|
* @subpackage include
|
|
* @copyright Copyright (C) 2010-2015 Nicholas K. Dionysopoulos
|
|
* @license GNU General Public License version 2, or later
|
|
*
|
|
* @deprecated 4.0 Deprecated without replacement include FOF by your own if required
|
|
*
|
|
* Initializes FOF
|
|
*/
|
|
|
|
defined('_JEXEC') or die();
|
|
|
|
if (!defined('FOF_INCLUDED'))
|
|
{
|
|
define('FOF_INCLUDED', '2.5.5');
|
|
|
|
// Register the FOF autoloader
|
|
require_once __DIR__ . '/autoloader/fof.php';
|
|
FOFAutoloaderFof::init();
|
|
|
|
// Register a debug log
|
|
if (defined('JDEBUG') && JDEBUG)
|
|
{
|
|
FOFPlatform::getInstance()->logAddLogger('fof.log.php');
|
|
}
|
|
}
|