PHP Classes

File: includes/autoload.php

Recommend this page to a friend!
  Classes of Unay Santisteban   Simple Framework   includes/autoload.php   Download  
File: includes/autoload.php
Role: Auxiliary 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/autoload.php
Date: 2 months ago
Size: 678 bytes
 

Contents

Class file image Download
<?php defined('DACCESS') or die ('Acceso restringido!');
/**
 * List of classes that are loaded when you start the application,
 * these libraries always be available if they are included here.
 * @author David Unay Santisteban <slavepens@gmail.com>
 * @package SlaveFramework
 * @version 1.0
 */

$classes = array(
   
'Security' => 'libraries',
   
'Session' => 'libraries',
   
'Database' => 'libraries',
   
'Language' => 'libraries',
   
'Permission' => 'libraries',
   
'Pagination' => 'libraries',
   
'Integrity' => 'libraries',
   
'Input' => 'libraries',
   
'Upload' => 'libraries',
   
'Url' => 'libraries'
);