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/' ); } final class APage { /** * @var Registry */ protected $registry; protected $pre_dispatch = array(); protected $error; private $pade_id; private $recursion_limit = 0; public function __construct($registry) { $this->registry = $registry; } public function __destruct() { $this->pade_id = ''; } public function __get($key) { return $this->registry->get($key); } public function __set($key, $value) { $this->registry->set($key, $value); } public function addPreDispatch($dispatch_rt) { $this->pre_dispatch[] = new ADispatcher($dispatch_rt, array("instance_id" => "0")); } public function build($dispatch_rt) { $dispatch = ''; $this->recursion_limit = 0; foreach ($this->pre_dispatch as $pre_dispatch) { /** * @var ADispatcher $pre_dispatch */ $result = $pre_dispatch->dispatch(); if ($result) { //Something happened. Need to run different page $dispatch_rt = $result; break; } } //Process disparcher in while in case we have new dispatch back while ($dispatch_rt){ //Process main level controller // load page layout if ($this->layout) { //filter in case we have pages set already $dispatch_rt = preg_replace('/^(pages)\//', '', $dispatch_rt); $dispatch_rt = 'pages/'.$dispatch_rt; //get controller only part. Layout needs only controller path $controller = $this->router->getController(); $this->pade_id = $this->layout->buildPageData( $controller ); //add controller and a child to parent page controller $this->layout->addChildFirst(0, $dispatch_rt, 'content', $dispatch_rt. '.tpl' ); $dispatch_rt = "common/page"; } //Do the magic $dispatch = new ADispatcher($dispatch_rt, array("instance_id" => "0")); $dispatch_rt = $dispatch->dispatch(); } unset($dispatch); } }