(Yaf >=1.0.0)
Yaf_Application::getModules — Get defined module names
Get the module names defined in the
application.modules
configuration entry. If none is defined, there will always be a
single module named "Index".
This function has no parameters.
An array of module names, or null if the application is not
properly initialized.
Example #1 Yaf_Application::getModules() example
<?php
$config = array(
"application" => array(
"directory" => realpath(dirname(__FILE__)) . "/application",
),
);
/** Yaf_Application */
$application = new Yaf_Application($config);
print_r($application->getModules());
?>The above example will output something similar to:
Array
(
[0] => Index
)