downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Yaf_Application::run> <Yaf_Application::getLastErrorNo
[edit] Last updated: Fri, 17 May 2013

view this page in

Yaf_Application::getModules

(Yaf >=1.0.0)

Yaf_Application::getModulesGet defined module names

Descrizione

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

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Esempi

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

Il precedente esempio visualizzerĂ  qualcosa simile a:

Array
(
    [0] => Index
)


add a note add a note User Contributed Notes Yaf_Application::getModules - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites