فهرست منبع

added the possibility to easily customize the template of just one widget of a form

Fabien Potencier 14 سال پیش
والد
کامیت
a204aec08b
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      src/Symfony/Bridge/Twig/Extension/FormExtension.php

+ 3 - 0
src/Symfony/Bridge/Twig/Extension/FormExtension.php

@@ -156,6 +156,9 @@ class FormExtension extends \Twig_Extension
     {
         $templates = $this->getTemplates($view);
         $blocks = $view->get('types');
+        if ('widget' === $section || 'row' === $section) {
+            array_unshift($blocks, '_'.$view->get('id'));
+        }
         foreach ($blocks as &$block) {
             $block = $block.'_'.$section;