Login   Register  
PHP Classes
elePHPant
Icontem

File: asmvc/myapp/configs/application.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Alex B. Snet  >  ASf MVC  >  asmvc/myapp/configs/application.php  >  Download  
File: asmvc/myapp/configs/application.php
Role: Configuration script
Content type: text/plain
Description: Sample Application config file
Class: ASf MVC
MVC implementation framework
Author: By
Last change:
Date: 2008-12-01 17:11
Size: 639 bytes
 

Contents

Class file image Download
<?php
/***
 * Name:    AlexSnet's framework MVC
 * About:    An MVC application framework for PHP
 * Copyright:    (C) 2008, Sudo me.
 * Author:    Alex Snet, me [at] alexsnet [dot] ru
 * Site:    http://alexsnet.ru/
 ***/

// ------------------------------------------------------------------------

/**
 * application.php
 *
 * application configuration
 *
 * @package        ASfMVC
 * @author        Alex Snet
 */

/* name of default controller when none is given in the URL */
$config['default_controller'] = 'default';

/* name of PHP function that handles system errors */
$config['error_handler_class'] = 'ASfMVC_ErrorHandler';


?>