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
19 lines
491 B
PHP
19 lines
491 B
PHP
<?php
|
|
/**
|
|
* @package AkeebaBackup
|
|
* @copyright Copyright (c)2006-2018 Nicholas K. Dionysopoulos / Akeeba Ltd
|
|
* @license GNU General Public License version 3, or later
|
|
*/
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
// Load FOF if not already loaded
|
|
if (!defined('FOF30_INCLUDED') && !@include_once(JPATH_LIBRARIES . '/fof30/include.php'))
|
|
{
|
|
throw new RuntimeException('This extension requires FOF 3.0.');
|
|
}
|
|
|
|
class plgQuickiconAkeebabackupInstallerScript extends FOF30\Utils\InstallScript\Plugin
|
|
{
|
|
}
|