(Yaf >=3.2.0)
Yaf_Dispatcher::getDefaultModule — Retrieve the default module name
Get the default module name, which is used when a module name can not
be extracted from the request URI. Defaults to
"Index".
Questa funzione non contiene parametri.
The default module name, or null if the application is not
initialized.
Example #1 Yaf_Dispatcher::getDefaultModule() example
<?php
$app = new Yaf_Application(dirname(__FILE__) . "/conf/application.ini");
var_dump(Yaf_Dispatcher::getInstance()->getDefaultModule());
?>Il precedente esempio visualizzerà qualcosa simile a:
string(5) "Index"