Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

glpi / src / autoloader.php @ e0c97dab

History | View | Annotate | Download (214 Bytes)

1
<?php
2

    
3
function vigilo_autoloader($class_name)
4
{
5
    if (strncmp($class_name, 'Vigilo', 6)==0) {
6
        require_once(__DIR__ . DIRECTORY_SEPARATOR . 'Vigilo' . DIRECTORY_SEPARATOR . $class_name . '.php');
7
    }
8
}