3
在symfony中執行語言切換器的最佳方式是將語言切換到使用所選語言的同一頁面? Jobeet只是在主頁上重定向。語言切換器,使用symfony重定向到當前頁面
在symfony中執行語言切換器的最佳方式是將語言切換到使用所選語言的同一頁面? Jobeet只是在主頁上重定向。語言切換器,使用symfony重定向到當前頁面
喜歡的東西所以應該做的伎倆:
<?php
class myActions extends sfActions
{
public function executeLanguageSwitch(sfWebRequest $request)
{
$new_language = $request->getParameter('lang',false);
$this->forward404unless($new_language);
// You should probably insert stuff here check that the new culture passed in is valid
$this->getUser()->setCulture($new_language);
$this->redirect($request->getReferer());
return sfView::HEADER_ONLY;
}
}
這總是要索引頁不是我的工作的行動? – 2011-09-16 08:31:00
+1好的問題 – 2011-09-16 08:20:43