Source for file elseif.php
Documentation is available at elseif.php
* Acts as a php elseif block, allowing you to add one more condition
* if the previous one(s) didn't match. See the {if} plugin for syntax details
* This software is provided 'as-is', without any express or implied warranty.
* In no event will the authors be held liable for any damages arising from the use of this software.
* @author Jordi Boggiano <j.boggiano@seld.be>
* @copyright Copyright (c) 2008, Jordi Boggiano
* @license http://dwoo.org/LICENSE Modified BSD License
public function init(array $rest)
public static function preProcessing(Dwoo_Compiler $compiler, array $params, $prepend, $append, $type)
$preContent .=
$compiler->removeTopBlock();
$block =
& $compiler->getCurrentBlock();
if (in_array('Dwoo_IElseable', $interfaces) !==
false) {
$params['initialized'] =
true;
$compiler->injectBlock($type, $params);
public static function postProcessing(Dwoo_Compiler $compiler, array $params, $prepend, $append, $content)
if (!isset
($params['initialized'])) {
$params =
$compiler->getCompiledParams($params);
if (isset
($params['hasElse'])) {
$post .=
$params['hasElse'];
$block =
& $compiler->getCurrentBlock();
$block['params']['hasElse'] =
$pre .
$content .
$post;
Documentation generated on Sat, 18 Jul 2009 21:04:57 +0200 by phpDocumentor 1.4.0