Exemplo n.º 1
0
 public static function main()
 {
     Template::set('pageTitle', 'Example AutoRoute');
     echo "<p>This is a page produced by \\AutoRoute\\ExampleAutoroute::route()</p>";
 }
Exemplo n.º 2
0
<?php

/**
 * Glue Framework
 * Copyright (C) 2015 Joby Elliott
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
namespace glue\routes\glue_404;

use glue\Route;
use glue\Template;
//404 page, nothing was routed
if (!Route::processed()) {
    header("HTTP/1.0 404 Not Found");
    Template::set('pageTitle', '404 Not Found');
    echo "<p>File not found</p>";
}
Exemplo n.º 3
0
<?php

/**
 * Glue Framework
 * Copyright (C) 2015 Joby Elliott
 *
 * This file is not licensed along with the rest of the Glue Framework. It is
 * released into the public domain, and you are free to modify or re-use it
 * in any way.
 */
namespace glue\routes\glue_site;

use glue\Route;
use glue\Template;
Route::get('/example-route', function () {
    Template::set('pageTitle', 'Site page');
    echo "<div>glue site-specific routed page</div>";
});