PHP Classes

File: includes/routes.php

Recommend this page to a friend!
  Classes of Unay Santisteban   Simple Framework   includes/routes.php   Download  
File: includes/routes.php
Role: Configuration script
Content type: text/plain
Description: Auxiliary script
Class: Simple Framework
Framework to implement MVC based Web applications
Author: By
Last change: Update of includes/routes.php
Date: 2 months ago
Size: 384 bytes
 

Contents

Class file image Download
<?php defined('DACCESS') or die ('Acceso restringido!');
/**
 * Definition of the url access.
 * @author David Unay Santisteban <slavepens@gmail.com>
 * @package SlaveFramework
 * @version 1.0
 */

$this->get('default_controller', 'home');
$this->get('default_404', 'notfound');
$this->get('default_offline', 'offline');

$this->get('home', 'demo');
$this->get('offline', 'offline');