Yaf_Dispatcher::setDefaultAction

(Yaf >=1.0.0)

Yaf_Dispatcher::setDefaultActionChange default action name

Description

public function Yaf_Dispatcher::setDefaultAction(string $action): Yaf_Dispatcher|null|false

Change the action name which is used when an action name can not be extracted from the request URI. The name is normalized to lowercase.

Parameters

action

The name of the action.

Return Values

Returns the Yaf_Dispatcher object itself on success, or false if the application is not initialized.

Examples

Example #1 Yaf_Dispatcher::setDefaultAction() example

<?php
$app = new Yaf_Application(dirname(__FILE__) . "/conf/application.ini");

// Requests without an action part are now routed to "main" instead of
// "index", e.g. /user maps to UserController::mainAction
Yaf_Dispatcher::getInstance()->setDefaultAction("main");

$app->run();
?>

See Also

add a note

User Contributed Notes

There are no user contributed notes for this page.