21/home/semplia/www/cli/aimeonlus/apps/admin/handlers/error.php
19.
20.<?php }
21.<?php
22.<?php header ('HTTP/1.1 ' . $this->data['code'] . ' ' . $this->data['title']);
23.<?php
<?php $page->title = $this->data['title'];
516/home/semplia/www/cli/aimeonlus/lib/Controller.php
514.
515.<?php // Run the handler and get its output
516.<?php ob_start ();
517.<?php $res = require ($handler);
518.<?php $out = ob_get_clean ();
<?php if (is_string ($res) && strlen ($res) > 0) {
355/home/semplia/www/cli/aimeonlus/lib/Controller.php
353.
354.<?php }
355.<?php
356.<?php return $c->handle ($handler, $internal, $data);
357.<?php }
<?php
382/home/semplia/www/cli/aimeonlus/lib/Controller.php
380.
381.<?php
382.<?php // Call the error handler
383.<?php return $this->run (conf ('General', 'error_handler'), array (
384.<?php 'code' => $code,
<?php 'title' => $title,
Hmm, sembra che al momento non si trovi la pagina che cerchi.
")61/home/semplia/www/cli/aimeonlus/apps/admin/handlers/page.php
59.
60.<?php // page not found
61.<?php if ($wp->error) {
62.<?php return $this->error (404, __ ('Page not found'), '<p>' . __ ('Hmm, we can\'t seem to find the page you wanted at the moment.') . '</p>');
63.<?php }
<?php
516/home/semplia/www/cli/aimeonlus/lib/Controller.php
514.
515.<?php // Run the handler and get its output
516.<?php ob_start ();
517.<?php $res = require ($handler);
518.<?php $out = ob_get_clean ();
<?php if (is_string ($res) && strlen ($res) > 0) {
216/home/semplia/www/cli/aimeonlus/lib/FrontController.php
214.
215.<?php $handler = $controller->route ($_SERVER['REQUEST_URI']);
216.<?php }
217.<?php $page->body = $controller->handle ($handler, false);
218.<?php
<?php /**
34/home/semplia/www/cli/aimeonlus/index.php
32.
33.<?php $argc = isset ($argc) ? $argc : null;
34.<?php $argv = isset ($argv) ? $argv : null;
<?php return FrontController::run ($argv, $argc);