PMA\libraries\Template::__call PHP Method

__call() public method

Magic call to locally inaccessible but associated helper functions
public __call ( string $funcName, array $arguments )
$funcName string function name
$arguments array function arguments
    public function __call($funcName, $arguments)
    {
        if (isset($this->helperFunctions[$funcName])) {
            return call_user_func_array($this->helperFunctions[$funcName], $arguments);
        } else {
            throw new \LogicException('The function "' . $funcName . '" is not associated with the template.');
        }
    }