Yaf_Application::getModules

(Yaf >=1.0.0)
Get defined module names
public array Yaf_Application::getModules ( void )

Get the modules list defined in config, if no one defined, there will always be a module named "Index".

Returns:
Examples:
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
)
doc_php
2016-02-24 16:07:16
Comments
Leave a Comment

Please login to continue.