ILIAS  Release_4_2_x_branch Revision 61807
 All Data Structures Namespaces Files Functions Variables Groups Pages
databayHelperLoader.php
Go to the documentation of this file.
1 <?php
2 
3 if( defined( 'DATABAY_HELPER_LOADED' ) )
4 {
5  return;
6 }
7 
8 define( 'DATABAY_HELPER_LOADED', TRUE );
9 
11 {
12  if( substr( strtolower( $name ), 0, 6 ) != 'ildbay' )
13  return;
14 
15  $basepath = dirname( __FILE__ ) . '/';
16 
17  if( file_exists( $path = ($basepath . 'classes/class.' . $name . '.php') ) )
18  {
19  require_once $path;
20  }
21 }
22 
23 spl_autoload_register( 'databay_helper_autoloader' );