{else:}

{else:} – adds an PHP else in an if block

Synopsis

Usage ( {else:} )

Description

adds an else statement in PHP so that blocks of conditional HTML are shown correctly.

Example

Setting variables for if

         

class example {
   
    function output() {
        
        $this->showStuff = false;
        
        .........
        $template->outputObject($this);
    }
}

Else in template

   

{if:showStuff}Hello{else:}World{end:}

Compiled template

         
      
<?php if ($t->showStuff)  { ?>Hello<?php } else { ?>World<<?php } ?>

The output

         
      
World
closes an if or foreach block (Previous) configures automatic form elements (Next)
Last updated: Sat, 16 Feb 2019 — Download Documentation
Do you think that something on this page is wrong? Please file a bug report.
View this page in:
  • English

User Notes:

There are no user contributed notes for this page.