(Yaf >=1.0.0)
Yaf_Loader::getLocalNamespace — Retrieve registered namespaces
Retrieve all registered local namespaces and their paths.
This function has no parameters.
An array of the registered local namespaces, keyed by the namespace prefix, or an empty array if none are registered.
Example #1 Yaf_Loader::getLocalNamespace() example
<?php
$app = new Yaf_Application(__DIR__ . "/conf/application.ini");
$loader = Yaf_Loader::getInstance();
$loader->registerLocalNamespace("Models");
$loader->registerLocalNamespace("Vendor", APPLICATION_PATH . "/library/Vendor");
print_r($loader->getLocalNamespace());
?>The above example will output something similar to:
Array
(
[Models] => /var/www/shop/application/library
[Vendor] => /var/www/shop/application/library/Vendor
)