]>
Commit | Line | Data |
---|---|---|
4f5b44bd NL |
1 | <?php |
2 | ||
3 | /* | |
4 | * This file is part of the Symfony package. | |
5 | * | |
6 | * (c) Fabien Potencier <fabien@symfony.com> | |
7 | * | |
8 | * For the full copyright and license information, please view the LICENSE | |
9 | * file that was distributed with this source code. | |
10 | */ | |
11 | ||
12 | namespace Symfony\Component\Form\Extension\Templating; | |
13 | ||
14 | use Symfony\Component\Form\AbstractExtension; | |
15 | use Symfony\Component\Form\FormRenderer; | |
16 | use Symfony\Component\Form\Extension\Csrf\CsrfProvider\CsrfProviderInterface; | |
17 | use Symfony\Component\Templating\PhpEngine; | |
18 | use Symfony\Bundle\FrameworkBundle\Templating\Helper\FormHelper; | |
19 | ||
20 | /** | |
21 | * Integrates the Templating component with the Form library. | |
22 | * | |
23 | * @author Bernhard Schussek <bschussek@gmail.com> | |
24 | */ | |
25 | class TemplatingExtension extends AbstractExtension | |
26 | { | |
27 | public function __construct(PhpEngine $engine, CsrfProviderInterface $csrfProvider = null, array $defaultThemes = array()) | |
28 | { | |
29 | $engine->addHelpers(array( | |
30 | new FormHelper(new FormRenderer(new TemplatingRendererEngine($engine, $defaultThemes), $csrfProvider)) | |
31 | )); | |
32 | } | |
33 | } |