Beispiel #1
0
function create($library)
{
    $args = func_get_args();
    return core_caller::create_library($library, array_slice($args, 1));
}
Beispiel #2
0
 public static function get_instance()
 {
     // Se o caller não for definido, carrega
     if (self::$_caller === null) {
         return self::$_caller = new self();
     }
     return self::$_caller;
 }