Yaf_Application::getModules
(Yaf >=1.0.0)
Yaf_Application::getModules — Get defined module names
Descrição
Get the modules list defined in config, if no one defined, there will always be a module named "Index".
Parâmetros
Esta função não possui parâmetros.
Valor Retornado
Exemplos
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());
?>
O exemplo acima produzirá algo semelhante a:
Array ( [0] => Index )