1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77:
<?php
class ConditionTemplateSyntaxElement extends AbstractTemplateSyntaxElement
{
private $ended = false;
public static function is_element(StringInputStream $input)
{
return $input->assert_next('#\sIF\s');
}
public function parse(TemplateSyntaxParserContext $context, StringInputStream $input, StringOutputStream $output)
{
$this->register($context, $input, $output);
$this->process_start();
$this->process_content();
$this->process_end();
if (!$this->ended)
{
$this->missing_end();
}
}
private function process_start()
{
$this->input->consume_next('#\sIF\s+');
$this->output->write('\';if (');
if ($this->input->consume_next('NOT\s+'))
{
$this->output->write('!');
}
$this->output->write(TemplateSyntaxElement::DATA . '->is_true(');
$this->parse_elt(new ExpressionContentTemplateSyntaxElement());
if (!$this->input->consume_next('\s*#'))
{
throw new TemplateRenderingException('invalid condition statement', $this->input);
}
$this->output->write(')){' . TemplateSyntaxElement::RESULT . '.=\'');
}
private function process_end()
{
$this->ended = $this->input->consume_next('#\s*END(?:\s*IF)?\s*#');
$this->output->write('\';}' . TemplateSyntaxElement::RESULT . '.=\'');
}
private function process_content()
{
$this->process_condition();
if ($this->input->consume_next('#\sELSE\s#'))
{
$this->output->write('\';}else{' . TemplateSyntaxElement::RESULT . '.=\'');
$this->process_condition();
}
}
private function process_condition()
{
$this->parse_elt(new TextTemplateSyntaxElement());
}
private function missing_end()
{
throw new TemplateRenderingException('Missing condition end', $this->input);
}
}
?>