You are here

public static function EasyRdf_Namespace::namespaces in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Namespace.php \EasyRdf_Namespace::namespaces()

Return all the namespaces registered

Return value

array Associative array of all the namespaces.

7 calls to EasyRdf_Namespace::namespaces()
EasyRdf_Namespace::delete in vendor/easyrdf/easyrdf/lib/EasyRdf/Namespace.php
Delete an existing namespace.
EasyRdf_Namespace::expand in vendor/easyrdf/easyrdf/lib/EasyRdf/Namespace.php
Expand a shortened URI (qname) back into a full URI.
EasyRdf_Namespace::get in vendor/easyrdf/easyrdf/lib/EasyRdf/Namespace.php
Return a namespace given its prefix.
EasyRdf_Namespace::set in vendor/easyrdf/easyrdf/lib/EasyRdf/Namespace.php
Register a new namespace.
EasyRdf_Namespace::setDefault in vendor/easyrdf/easyrdf/lib/EasyRdf/Namespace.php
Set the default namespace

... See full list

File

vendor/easyrdf/easyrdf/lib/EasyRdf/Namespace.php, line 113

Class

EasyRdf_Namespace
A namespace registry and manipulation class.

Code

public static function namespaces() {
  if (self::$namespaces === null) {
    self::resetNamespaces();
  }
  return self::$namespaces;
}