UPGRADE NOTE: Do not edit or add to this file if you wish to upgrade AbanteCart to newer versions in the future. If you wish to customize AbanteCart for your needs please refer to http://www.AbanteCart.com for more information. ------------------------------------------------------------------------------*/ if (! defined ( 'DIR_CORE' )) { header ( 'Location: static_pages/' ); } /** * Class AHook * @property ExtensionsApi $extensions * @method hk_InitEnd */ final class AHook { /** * @var Registry */ public $registry; public function __construct($registry) { $this->registry = $registry; } public function __get($key) { return $this->registry->get($key); } public function __set($key, $value) { $this->registry->set($key, $value); } public function __call($method, $args) { if ( !$this->registry->has('extensions') ) return null; array_unshift($args, $this); $return = call_user_func_array(array($this->extensions, $method), $args); return $return; } }