【php】fuelphpについて語ろうぜ
■ このスレッドは過去ログ倉庫に格納されています
0024nobodyさん
2012/01/06(金) 17:41:27.28ID:???毎回同じ事を書くの面倒です
このへんはどう改善して書けばよいですか?
class Controller_Welcome extends Controller
{
public function action_index()
{
$data['title'] = "サイトのタイトル";
return Response::forge(View::forge('welcome/index'));
}
public function action_sitemap()
{
$data['title'] = "サイトのタイトル";
return Response::forge(View::forge('welcome/sitemap'));
}
public function action_page()
{
$data['title'] = "サイトのタイトル";
return Response::forge(View::forge('welcome/page'));
}
}
■ このスレッドは過去ログ倉庫に格納されています