Yaf_Application::getModules

(Yaf >=1.0.0)

Yaf_Application::getModulesGet defined module names

Açıklama

public Yaf_Application::getModules ( void ) : array

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

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

Örnekler

Örnek 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());
?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

Array
(
    [0] => Index
)