source: trunk/src/init.php@ 7716

Last change on this file since 7716 was 7661, checked in by rick, 15 years ago

Need to have <?php to make to parse properly under UNIX

File size: 252 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.