<?php
if(!defined('SYS_ROOT')){exit('No direct file access allowed!');}
/**
* Xtron PHP Framework
* A MVC style framework for building web applications
* By: Jason Alan Delaney (http://www.xtroncms.com)
* PHP version 5+
*/
/**
* You can load mods like this:
*
* $mods['mod_point'] = 'mod_filename1';
* $mods['pre_controller'] = 'mod_filename2';
*
* You can load multiple mods at a single point like this:
*
* $mods['pre_controller'] = array('mod_filename1','mod_filename2');
*
* Where 'pre_controller' is the invoke point;
*
* Any settings or parameters for mods can be set in the
* mod.config file that came with your mod =]
*
*/
$mods['pre_core'] = '';
$mods['post_core'] = '';
$mods['pre_controller'] = '';
$mods['post_controller'] = '';
?>