source: trunk/src/init.php@ 7821

Last change on this file since 7821 was 7725, checked in by rick, 15 years ago

Made sure the the line style is set to be OS friendly

  • Property svn:eol-style set to native
File size: 241 bytes
Line 
1<?php
2/*
3 * Project: NodeMap2.0
4 * File: init.php
5 * Purpose: Include all files needed for the application
6 */
7
8$require_count = count($config['require']);
9for ($i = 0; $i < $require_count; $i++) {
10 require_once($config['require'][$i]);
11}
12?>
Note: See TracBrowser for help on using the repository browser.