class Twig_Filter_Method

Represents a method template filter.

Use Twig_SimpleFilter instead.

@author Fabien Potencier <fabien@symfony.com>

Hierarchy

Expanded class hierarchy of Twig_Filter_Method

Deprecated

since 1.12 (to be removed in 2.0)

File

drupal/core/vendor/twig/twig/lib/Twig/Filter/Method.php, line 20

View source
class Twig_Filter_Method extends Twig_Filter {
  protected $extension;
  protected $method;
  public function __construct(Twig_ExtensionInterface $extension, $method, array $options = array()) {
    $options['callable'] = array(
      $extension,
      $method,
    );
    parent::__construct($options);
    $this->extension = $extension;
    $this->method = $method;
  }
  public function compile() {
    return sprintf('$this->env->getExtension(\'%s\')->%s', $this->extension
      ->getName(), $this->method);
  }

}

Members