76/home/semplia/www/cli/aimeonlus/apps/admin/handlers/page.php
74.
75.<?php
76.<?php // set the page properties
77.<?php $page->id = $id;
78.<?php $page->title = Template::sanitize ($wp->title);
<?php $page->_menu_title = Template::sanitize ($wp->menu_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) {
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);