Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

glpi / src / plugins / vigilo / autoloader.php @ f1634ea8

History | View | Annotate | Download (249 Bytes)

1
<?php
2

    
3
define('VIGILO_CONFDIR', $confdir);
4

    
5
function vigilo_autoloader($class_name)
6
{
7
    if (!strncmp($class_name, 'Vigilo', 6)) {
8
        require_once(__DIR__ . DIRECTORY_SEPARATOR . 'Vigilo' . DIRECTORY_SEPARATOR . $class_name . '.php');
9
    }
10
}