You are here

function xautoload_InjectedAPI_hookXautoload::namespaceHandler in X Autoload 7.3

Same name and namespace in other branches
  1. 7.5 legacy/lib/InjectedAPI/hookXautoload.php \xautoload_InjectedAPI_hookXautoload::namespaceHandler()
  2. 7.2 lib/InjectedAPI/hookXautoload.php \xautoload_InjectedAPI_hookXautoload::namespaceHandler()
  3. 7.4 legacy/lib/InjectedAPI/hookXautoload.php \xautoload_InjectedAPI_hookXautoload::namespaceHandler()

Legacy: Plugins were called "Handler" before.

Parameters

string $namespace:

xautoload_FinderPlugin_Interface $plugin:

File

lib/InjectedAPI/hookXautoload.php, line 107

Class

xautoload_InjectedAPI_hookXautoload
An instance of this class is passed around to implementations of hook_xautoload(). It acts as a wrapper around the ClassFinder, to register stuff.

Code

function namespaceHandler($namespace, $plugin) {
  $this->finder
    ->registerNamespacePlugin($namespace, $plugin);
}