source: sandbox/newExpressoMail/newExpressoMail/Assetic/Extension/Twig/AsseticFilterFunction.php @ 7265

Revision 7265, 665 bytes checked in by gustavo, 12 years ago (diff)

Ticket #0000 - Criado novo modulo para o desenvolvimento do novo ExpressoMail?

  • Property svn:executable set to *
Line 
1<?php
2
3/*
4 * This file is part of the Assetic package, an OpenSky project.
5 *
6 * (c) 2010-2012 OpenSky Project Inc
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12namespace Assetic\Extension\Twig;
13
14class AsseticFilterFunction extends \Twig_Function
15{
16    private $filter;
17
18    public function __construct($filter, $options = array())
19    {
20        $this->filter = $filter;
21
22        parent::__construct($options);
23    }
24
25    public function compile()
26    {
27        return sprintf('$this->env->getExtension(\'assetic\')->getFilterInvoker(\'%s\')->invoke', $this->filter);
28    }
29}
Note: See TracBrowser for help on using the repository browser.