ILIAS
Release_4_2_x_branch Revision 61807
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
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
10
function
databay_helper_autoloader
($name)
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'
);
Modules
Chatroom
lib
DatabayHelper
databayHelperLoader.php
Generated on Fri Apr 22 2016 19:03:46 for ILIAS by
1.8.1.2 (using
Doxyfile
)