アクションクラスコール時に必須で実行されるメソッド <?php
class fooActions extends sfActions
{
public function preExecute() {
}
public function executeIndex(sfWebRequest $request) {
}
public function postExecute() {
}
}
参考http://www.symfony-project.org/book/1_2/06-Inside-the-Controller-Layer |
|