35 lines
881 B
PHP
35 lines
881 B
PHP
<?php
|
|
/**
|
|
* 2024 Anvanto
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License (AFL 3.0)
|
|
*
|
|
* @author Anvanto <anvantoco@gmail.com>
|
|
* @copyright 2024 Anvanto
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
*/
|
|
|
|
if (!defined('_PS_VERSION_')) {
|
|
exit;
|
|
}
|
|
|
|
spl_autoload_register(function ($class) {
|
|
if (Tools::substr($class, 0, 10) !== 'ReCaptcha\\') {
|
|
/* If the class does not lie under the "ReCaptcha" namespace,
|
|
* then we can exit immediately.
|
|
*/
|
|
return;
|
|
}
|
|
|
|
/* First, check under the current directory. It is important that
|
|
* we look here first, so that we don't waste time searching for
|
|
* test classes in the common case.
|
|
*/
|
|
$path = dirname(__FILE__).'/'.$class.'.php';
|
|
if (is_readable($path)) {
|
|
require_once $path;
|
|
}
|
|
});
|