Browse Source

[Form][Twig] Removed obsolete form_data() helper

Bernhard Schussek 14 years ago
parent
commit
2ddc85ae5a
1 changed files with 0 additions and 11 deletions
  1. 0 11
      src/Symfony/Bridge/Twig/Extension/FormExtension.php

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

@@ -73,7 +73,6 @@ class FormExtension extends \Twig_Extension
             'form_widget'  => new \Twig_Function_Method($this, 'renderWidget', array('is_safe' => array('html'))),
             'form_errors'  => new \Twig_Function_Method($this, 'renderErrors', array('is_safe' => array('html'))),
             'form_label'   => new \Twig_Function_Method($this, 'renderLabel', array('is_safe' => array('html'))),
-            'form_data'    => new \Twig_Function_Method($this, 'renderData', array('is_safe' => array('html'))),
             'form_row'     => new \Twig_Function_Method($this, 'renderRow', array('is_safe' => array('html'))),
             'form_rest'    => new \Twig_Function_Method($this, 'renderRest', array('is_safe' => array('html'))),
         );
@@ -158,16 +157,6 @@ class FormExtension extends \Twig_Extension
         return $this->render($view, 'label', null === $label ? array() : array('label' => $label));
     }
 
-    /**
-     * Renders the widget data of the given view
-     *
-     * @param FormView $view The view to render the data for
-     */
-    public function renderData(FormView $view)
-    {
-        return $form->getData();
-    }
-
     protected function render(FormView $view, $section, array $variables = array(), array $resources = null)
     {
         $templates = $this->getTemplates($view, $resources);