source: trunk/src/init.php@ 7644

Last change on this file since 7644 was 7629, checked in by Pieter Naber, 15 years ago

Added config and init file for easy editing of class and node files

File size: 249 bytes
Line 
1<?
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.