Asf_Dispatcher::setDefaultModule

设置默认的module名称

设置新的模块, 请务必添加模块白名单; 配置选项 asf.modules


Description

public Asf_Dispatcher Asf_Dispatcher::setdefaultmodule(string $name)

Parameters

name

名称, 不区分大小写

Return Values

Asf_Dispatcher Object 代表返回成功, false 代表失败

Examples

Example #1

<?php
class Bootstrap
{
    public function _initHow($dispatcher)
    {
        $dispatcher->setDefaultModule('check');
    }
}

Example #2

<?php
class Bootstrap
{
    public function _initHow($dispatcher)
    {
        $dispatcher->setDefaultModule('api')->setDefaultService('index')
            ->setDefaultAction('check');
    }
}