Материал не опубликован
/var/www/biblioteka-aktogai/data/www/biblioteka-aktogai.gov.kz/classes/App/Controller/Stuff.php
31            }
32    
33            if ($stuff->active != 1) {
34                throw new \PHPixie\Exception\PageNotFound('Материал не опубликован');
35            } else {
36                $stuff->hits = $stuff->hits + 1;
/var/www/biblioteka-aktogai/data/www/biblioteka-aktogai.gov.kz/vendor/phpixie/core/classes/PHPixie/Controller.php
103    		$this->execute = true;
104    		$this->before();
105    		if ($this->execute)
106    			$this->$action();
107    		if ($this->execute)
108    			$this->after();
/var/www/biblioteka-aktogai/data/www/biblioteka-aktogai.gov.kz/vendor/phpixie/core/classes/PHPixie/Request.php
187    		$class = $this->param('namespace',$this->pixie->app_namespace).'Controller\\'.ucfirst($this->param('controller'));
188    		$controller = $this->pixie->controller($class);
189    		$controller->request = $this;
190    		$controller->run($this->param('action'));
191    		return $controller->response;
192    	}
/var/www/biblioteka-aktogai/data/www/biblioteka-aktogai.gov.kz/vendor/phpixie/core/classes/PHPixie/Pixie.php
229    		try {
230    		
231    			$request =  $this->http_request();
232    			$response = $request->execute();
233    			$response->send_headers()->send_body();
234    			
/var/www/biblioteka-aktogai/data/www/biblioteka-aktogai.gov.kz/web/index.php
56        }
57    }
58    
59    $pixie->bootstrap($root)->handle_http_request();