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:----M+MjbsjV4do3+OL05Ng+48OldGsjTwOmGYJXRkM4j5rOXFiXrPLu9ercMYeeazGcFXGCYHD1rNkZOu+fwz9/rdEgibc8KZ6ESiQiYmPdebkNkA4dZ42wYJT7hDbk644B8C7RRPxcy7YnMLadxuUz5x+EfxvvWaZ77A3g8QcSXIT5nm3XFU5gz7wNAVfNWxjrrcKGB3t6ErfnUdyyPErOMuTFGZVZD9pbWBbyoCy1gHNVuSNtLoBoejc7eLyjxBpdqh/mN+8xAuhstYavKEHCikDkd1bZD9FbDj8r/NuxwK9BDG7HbwSsc1FhISw5aV5WdSKdldk5lsVHEKZdj3n+tX94QDbRgyXIkH0ptrzPeRAGub/zei0vOvN7m+hHDWzciMdjM4M/PyAjSXpZv57XeigcRso+0+Ke1yRhPYPHKIEVgOY1CaM8lt5YmLUpzcgjWqbkKN1YNdVOqmECowUnD3NxXkdbKIyrkwxgZo4CHn8NnLGgG6zTJ6nHU7b8UrCO+wbpjQaCwoXgnNiAxWagkExjzeBPxEtif8HOCOw2EuTdv5mbQCNeK5UmAdVgqnDFuBFGWAnKdw0UH0pfN2yDMKHcncscj+vPdbcco2JUKEYlhxr/HTx0d3V2Opb2JDXyH1vFg9g/+QjhaEVNEUlF+0JMKAfYn3be+1AJejL/0/U=----ATTACHMENT:----MzU5NTY5NTgwNjYyMzIzOCA1NDc0OTQ0MTE4MjM2OTExIDQzMzcyMzExMTI2NTczOTI=