Yaf_Application::getModules
(Yaf >=1.0.0)
Yaf_Application::getModules — 定義済みのモジュール名を取得する
説明
設定で定義したモジュールのリストを取得します。 何も定義していない場合は "Index" だけになります。
パラメータ
この関数にはパラメータはありません。
戻り値
例
例1 Yaf_Application::getModules() の例
<?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
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google