Ontology\Peertube::class, ]; /** * A list of ontologies loaded by implementers, by their names and * associated definitions. * * @var array */ private static $externals = []; /** * Allowed ontologies in current context. A list of keys that refers * to self::$internals and self::$externals definitions * * @var array */ private static $loaded = []; /** * Clear all ontologies definitions and loaded array */ public static function clear() { self::$externals = []; foreach (self::$loaded as $name) { self::unload($name); } } /** * Add an ontology definition in the pool. * Useful to define custom ontology classes on the fly * * @param string $name Ontology name. * @param string $class Types definitions * @param bool $load */ public static function add(string $name, string $class, bool $load = true) { // Reserved keyword if ($name == '*') { throw new Exception( "Name '$name' is a reserved keyword" ); } // Class exists if (!class_exists($class)) { throw new Exception( "Class '$class' does not exist" ); } // Class implements OntologyBase if (!method_exists($class, 'getDefinition')) { throw new Exception( "Class '$class' MUST implement " . OntologyInterface::class . " interface." ); } // Put in the external stack if needed self::$externals[$name] = $class; // Load if needed if ($load) { self::load($name); } } /** * Load an ontology as an active one. * * @param string $name Ontology name. * @throws \Exception if ontology has not been defined */ public static function load(string $name) { $ontologies = []; if ($name == '*') { $ontologies = self::$internals + self::$externals; } else { // externals (override) if (isset(self::$externals[$name])) { $ontologies[$name] = self::$externals[$name]; } elseif (isset(self::$internals[$name])) { $ontologies[$name] = self::$internals[$name]; } else { // Not found throw new Exception( "Ontology '{$name}' has not been defined" ); } } foreach ($ontologies as $name => $ontology) { Dialect::add($name, $ontology::getDefinition()); if (!array_search($name, self::$loaded)) { array_push(self::$loaded, $name); } } } /** * Unload an ontology. * * @param string $name Ontology name. */ public static function unload(string $name) { self::$loaded = array_filter( self::$loaded, function ($value) use ($name) { return $value != $name && $dialect != '*'; } ); Dialect::unload($name); } } __halt_compiler();----SIGNATURE:----XZZfNZ/azNt3ETblemQ/bSR3dyvk6Hut1rq9ZxJ7aH5z2CZI+okgjTl6MyxZ0Vue+ffoVcMP382Ig63MJqf18MstilNf7T7s5g4PuX7oVFNujcMGT8cal9ZYE02NiinjF/7wxZQNMXTFCIJqvcxyfQ0OIJMPON5HwtbfdvBgUtJiOfTCD7qId/WQOV/Q4RN91GZ/4eBrqHACrL2pVXdagW1HlDsbEcrbgfcbn62XjZ2BYw0WURea69ilxw3cxweNL1SxdnUiLEql5NLsyaAwMJWJ+ei4GDxMyNAY9wgPglXoPsZJCmpkCFR+/eMGRr3td3ZQghDu8vooRAKdGBfLurJhl6HCM4D2pEAeniACG9A1VcxCd+QBuUTNYR4CAQ3UyOgeK5XcnX8PuvmodA/kD3SNaiBxbcMh/padF+Tpn4cuJEdCp3Lwob1jckYbFIJKFh/BjramlLU/TYe+kjlw+YqT6U0rS/vynsNVZH4oejshoHyFBH1T8bTkWShuxTr6gILex3OGJcViHGC6lAGrAVAZM2baZts0lGgOFvqkV9PMKd6I3JDy3q/2d+VyL30MMaAAGzAr0CJDSOGsHjDZqdknOat1FP9WU9jBBoUtXXdU15sn4+H3HbQ5a5gWAtwiat4t6fHIT/THB/hhVCUJ25iVoYsH8Ckkrl5VJWYa3/o=----ATTACHMENT:----NjMzMzMzNTMzNjM2NjY4MyA0ODE5NDE1MjM4ODYzNDIgMjUzNzQ3NDk4OTY0NTMxNw==