GoLang Yaf_Application::getModules

request it (231)
GoLang replacement for PHP's Yaf_Application::getModules [edit | history]



Do you know a GoLang replacement for PHP's Yaf_Application::getModules? Write it!

PHP Yaf_Application::getModules

PHP original manual for Yaf_Application::getModules [ show | php.net ]

Yaf_Application::getModules

(Yaf >=1.0.0)

Yaf_Application::getModulesGet defined module names

Description

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".

Parameters

This function has no parameters.

Return Values

Examples

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
)