root/components/_start.php

2391
1
<?php
1
<?php
2
define( "COMPONENTS_PATH" , str_replace( "\\" , "/" , str_replace( basename( __FILE__ ) , "" , __FILE__ ) ) );
2
define( "COMPONENTS_PATH" , str_replace( "\\" , "/" , str_replace( basename( __FILE__ ) , "" , __FILE__ ) ) );
3
3
4
require_once( COMPONENTS_PATH . "_start.php" );
4
Loader::requireOnce( COMPONENTS_PATH . "_start.php" );
5
require_once( COMPONENTS_PATH . "library/_start.php" );
5
Loader::requireOnce( COMPONENTS_PATH . "library/_start.php" );
6
//require_once( COMPONENTS_PATH . "backtrace/_start.php" );
6
//Loader::requireOnce( COMPONENTS_PATH . "backtrace/_start.php" );
7
require_once( COMPONENTS_PATH . "extendedReflection/_start.php" );
7
Loader::requireOnce( COMPONENTS_PATH . "extendedReflection/_start.php" );
8
require_once( COMPONENTS_PATH . "codeReflection/_start.php" );
8
Loader::requireOnce( COMPONENTS_PATH . "codeReflection/_start.php" );
9
require_once( COMPONENTS_PATH . "codeInstrumentation/_start.php" );
9
Loader::requireOnce( COMPONENTS_PATH . "codeInstrumentation/_start.php" );
10
require_once( COMPONENTS_PATH . "xmlSequence/_start.php" );
10
Loader::requireOnce( COMPONENTS_PATH . "xmlSequence/_start.php" );
11
require_once( COMPONENTS_PATH . "codeToDiagram/_start.php" );
11
Loader::requireOnce( COMPONENTS_PATH . "codeToDiagram/_start.php" );
12
?>
12
?>