Subversion Repositories oidplus

Rev

Rev 1441 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1441 Rev 1448
Line 380... Line 380...
380
        if (class_exists($fullname)) {
380
        if (class_exists($fullname)) {
381
            $meta = new \ReflectionClass($fullname);
381
            $meta = new \ReflectionClass($fullname);
382
            $shortname = $meta->getShortName();
382
            $shortname = $meta->getShortName();
383
            self::$plugins[static::ALGORITHM]['Keys'][strtolower($shortname)] = $fullname;
383
            self::$plugins[static::ALGORITHM]['Keys'][strtolower($shortname)] = $fullname;
384
            if ($meta->hasConstant('IS_INVISIBLE')) {
384
            if ($meta->hasConstant('IS_INVISIBLE')) {
385
                self::$invisiblePlugins[static::ALGORITHM] = strtolower($name);
385
                self::$invisiblePlugins[static::ALGORITHM][] = strtolower($shortname);
386
            }
386
            }
387
        }
387
        }
388
    }
388
    }
389
 
389
 
390
    /**
390
    /**