Yaf_Application::getModules

(Yaf >=1.0.0)

Yaf_Application::getModulesGet 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".

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

Приклади

Приклад #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());
?>

Наведений вище приклад виведе щось подібне до:

Array
(
    [0] => Index
)
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top