Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

glpi / autoloader.php @ 8b28e91d

History | View | Annotate | Download (211 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
}