_start.php
Go to the documentation of this file.00001 <?php
00011 if ( class_exists( "Loader" ) )
00012 {
00013 Loader::requireOnce( "MatchInterface.interface.php" , true );
00014 Loader::requireOnce( "MatchListInterface.interface.php" , true );
00015 Loader::requireOnce( "MatchName.class.php" , true );
00016 Loader::requireOnce( "MatchRegularExpression.class.php" , true );
00017 Loader::requireOnce( "MatchGroup.class.php" , true );
00018 Loader::requireOnce( "MatchGatekeeper.class.php" , true );
00019 }
00020 else
00021 {
00022 require_once( "MatchInterface.interface.php" );
00023 require_once( "MatchListInterface.interface.php" );
00024 require_once( "MatchName.class.php" );
00025 require_once( "MatchRegularExpression.class.php" );
00026 require_once( "MatchGroup.class.php" );
00027 require_once( "MatchGatekeeper.class.php" );
00028 }
00029 ?>