...
Code Block | ||||
---|---|---|---|---|
| ||||
<html>
<if condition="$a == $b">
<if condition="$z == $y">
Show This
<else>
Show That
</if>
Continue show this too.
</if>
Etc.
</html> |
However, as TorneEngine was released, this way to handle if conditions was removed from the open source library and instead the ability to load own functions to handle 'ifs' via plugins was made to not disturb the eventuals copyrights of the code. In TorneLIB v5, we are instead trying to utilize Smarty with the same calls (evaltemplate()).
...