Node.php 673B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /*
  3. * This file is part of Twig.
  4. *
  5. * (c) 2011 Fabien Potencier
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. /**
  11. * Represents a template function as a node.
  12. *
  13. * @package twig
  14. * @author Fabien Potencier <fabien@symfony.com>
  15. */
  16. class Twig_Function_Node extends Twig_Filter
  17. {
  18. protected $class;
  19. public function __construct($class, array $options = array())
  20. {
  21. parent::__construct($options);
  22. $this->class = $class;
  23. }
  24. public function getClass()
  25. {
  26. return $this->class;
  27. }
  28. public function compile()
  29. {
  30. }
  31. }