ILIAS  Release_4_2_x_branch Revision 61807
 All Data Structures Namespaces Files Functions Variables Groups Pages
databayHelperLoader.php File Reference

Go to the source code of this file.

Functions

 databay_helper_autoloader ($name)

Variables

const DATABAY_HELPER_LOADED (defined( 'DATABAY_HELPER_LOADED')) = TRUE

Function Documentation

databay_helper_autoloader (   $name)

Definition at line 10 of file databayHelperLoader.php.

References $path.

{
if( substr( strtolower( $name ), 0, 6 ) != 'ildbay' )
return;
$basepath = dirname( __FILE__ ) . '/';
if( file_exists( $path = ($basepath . 'classes/class.' . $name . '.php') ) )
{
require_once $path;
}
}

Variable Documentation

const DATABAY_HELPER_LOADED(defined( 'DATABAY_HELPER_LOADED')) = TRUE

Definition at line 8 of file databayHelperLoader.php.