回答編集履歴
1
追記
answer
CHANGED
@@ -1,1 +1,21 @@
|
|
1
|
-
Endif おおくありませんか?
|
1
|
+
Endif おおくありませんか?
|
2
|
+
|
3
|
+
追記
|
4
|
+
---
|
5
|
+
|
6
|
+
通常以下のように `render` にて第二引数に指定した配列に定義したものしかシンプルネームで処理ができません。
|
7
|
+
|
8
|
+
|
9
|
+
```php
|
10
|
+
return $app->render('Product/list.twig', array(
|
11
|
+
'subtitle' => $this->getPageTitle($searchData),
|
12
|
+
'pagination' => $pagination,
|
13
|
+
'search_form' => $searchForm->createView(),
|
14
|
+
'disp_number_form' => $dispNumberForm->createView(),
|
15
|
+
'order_by_form' => $orderByForm->createView(),
|
16
|
+
'forms' => $forms,
|
17
|
+
'Category' => $Category,
|
18
|
+
));
|
19
|
+
```
|
20
|
+
イベント TwigEvent のフックポイントでこのパラメーターは追加変更が可能です。
|
21
|
+
※この場合のフックポイント名は [Product/list.twig] だったはず
|