KnpPaginatorBundle でソート可能なオプション リストを取得したいのですが、失敗しました。これは次の形式です。
<form action="" method="get" class="form_sort" id="myForm">
<span class="manage_title">Sort by:</span>
<select class="select_styled white_select" id="sort_list" name="option" onChange="sendForm();">
<option value="">-------</option>
{{ knp_pagination_sortable(pagination, 'Country A-Z', 'country', {'sort': 'country', 'direction': 'asc'}) }}
{{ knp_pagination_sortable(pagination, 'Country Z-Z', 'country', {'sort': 'country', 'direction': 'desc'}) }}
</select>
</form>
そして、これは KnpPaginatorBundle\Pagination\sortable_option.html.twig のビューです
<option {% for attr, value in options %} {{ attr }}="{{ value }}"{% endfor %}>{{ title }}</option>
これがアクションです:
public function listAction($page, Request $request)
{
$em = $this->getDoctrine()->getManager();
$paginator = $this->get('knp_paginator');
if ($request->getMethod() == 'POST')
{
$option = $request->query->get('option'); //get query option
list($directiuon, $sort) = explode(":", $option);
$listTravels = $em->getRepository('ProjectTravelBundle:Travel')->getListTravelsFrontend($sort, $direction);
$pagination = $paginator->paginate(
$listTravels,
$this->get('request')->query->get('page', $page)/*page number*/,
5/*limit per page*/
);
return $this->render('ProjectFrontendBundle:Frontend:list.html.twig',array(
'pagination' => $pagination
));
}
$listTravels = $em->getRepository('ProjectTravelBundle:Travel')->findAll();
$pagination = $paginator->paginate(
$listTravels,
$this->get('request')->query->get('page', $page)/*page number*/,
5/*limit per page*/
);
return $this->render('ProjectFrontendBundle:Frontend:list.html.twig',array(
'pagination' => $pagination
));
}
sort=country と direction=ascを使用してフォームでオプションを正しく作成する方法と、 sort=country と direction=descを使用した 2 番目のオプションを作成する方法を知りたいです。また、 POST後にコントローラーでこれらのパラメーターを取得したいと思います。アクションの間違いを修正します(爆発寸前)。
たとえば、最初の選択肢を選択すると、次の URL が表示されます。
http://localhost/agence/web/app_dev.php/travels?option=Country+A-Z