エプソンダイレクト株式会社

2010年8月1日日曜日

15 symfony モジュールの開発 CentOS

frontアプリケーションにindexというモジュールを作成して、
hello!worldを出力するモジュールを作成する。


cd /project/hello コマンドで、プロジェクト用のディレクトリへ移動

symfony init-module front index コマンドを入力してエンター

→/project/hello/apps/front/modules/ 配下にindexモジュール(indexSuccess.php)ができていることを確認、
http://www.ohgon-town.com/indexへアクセスして、「Module "index" created」 の画面を確認する。

/project/hello/apps/front/modules/index/templates/indexSuccess.php を開き、Hello!World! など
出力させたい内容を記述する。

/project/hello/apps/front/modules/index/templates/actions.class.php を開き、
18行目から21行目の

public function executeIndex(sfWebRequest $request)
{
$this->forward('default','module');
}

という記述の $this->foward.... の行をコメントアウト(して、return sfView::SUCCESS;と記述)
する。

http://www.ohgon-town.com/indexに再度アクセスして「Hello!World!」と表示されれば成功

0 件のコメント:

コメントを投稿