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
39 lines
807 B
PHP
39 lines
807 B
PHP
<?php
|
||
/**
|
||
* @package FOF
|
||
* @copyright Copyright (c)2010-2018 Nicholas K. Dionysopoulos / Akeeba Ltd
|
||
* @license GNU GPL version 2 or later
|
||
*
|
||
* Based on the Seesion package of Aura for PHP – https://github.com/auraphp/Aura.Session
|
||
*/
|
||
|
||
namespace FOF30\Utils;
|
||
|
||
defined('_JEXEC') or die;
|
||
|
||
/**
|
||
* Intercept calls to PHP functions.
|
||
*
|
||
* @method function_exists(StringHelper $function)
|
||
* @method mcrypt_list_algorithms()
|
||
* @method hash_algos()
|
||
*/
|
||
class Phpfunc
|
||
{
|
||
/**
|
||
*
|
||
* Magic call to intercept any function pass to it.
|
||
*
|
||
* @param string $func The function to call.
|
||
*
|
||
* @param array $args Arguments passed to the function.
|
||
*
|
||
* @return mixed The result of the function call.
|
||
*
|
||
*/
|
||
public function __call($func, $args)
|
||
{
|
||
return call_user_func_array($func, $args);
|
||
}
|
||
}
|