public static function EasyRdf_Format::unregister in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Format.php \EasyRdf_Format::unregister()
Remove a format from the registry
Parameters
string $name The name of the format (e.g. ntriples):
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Format.php, line 192
Class
- EasyRdf_Format
- Class the represents an RDF file format.
Code
public static function unregister($name) {
unset(self::$formats[$name]);
}