(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
1 2 3 4 5 6 7 8 9 10 11 | <?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 )
Please login to continue.