Odd.php 651B

12345678910111213141516171819202122232425262728293031323334
  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. * Checks if a number is odd.
  12. *
  13. * <pre>
  14. * {{ var is odd }}
  15. * </pre>
  16. *
  17. * @package twig
  18. * @author Fabien Potencier <fabien@symfony.com>
  19. */
  20. class Twig_Node_Expression_Test_Odd extends Twig_Node_Expression_Test
  21. {
  22. public function compile(Twig_Compiler $compiler)
  23. {
  24. $compiler
  25. ->raw('(')
  26. ->subcompile($this->getNode('node'))
  27. ->raw(' % 2 == 1')
  28. ->raw(')')
  29. ;
  30. }
  31. }