Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

glpi / src / autoloader.php @ 0e8eed1f

History | View | Annotate | Download (212 Bytes)

1
<?php
2

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