Seditio Source
Root |
./othercms/dotclear-2.22/inc/libs/clearbricks/template/class.tplnodeblock.php
<?php
/**
 * @class tplNodeBlock
 * @brief Block node, for all <tpl:Tag>...</tpl:Tag>
 *
 * @package Clearbricks
 * @subpackage Template
 *
 * @copyright Olivier Meunier & Association Dotclear
 * @copyright GPL-2.0-only
 */
class tplNodeBlock extends tplNode
{
    protected
$attr;
    protected
$tag;
    protected
$closed;
    protected
$content;

    public function
__construct(string $tag, array $attr)
    {
       
parent::__construct();
       
$this->content = '';
       
$this->tag     = $tag;
       
$this->attr    = $attr;
       
$this->closed  = false;
    }
    public function
setClosing()
    {
       
$this->closed = true;
    }
    public function
isClosed()
    {
        return
$this->closed;
    }
    public function
compile(template $tpl): string
   
{
        if (
$this->closed) {
           
$content = parent::compile($tpl);

            return
$tpl->compileBlockNode($this->tag, $this->attr, $content);
        }
       
// if tag has not been closed, silently ignore its content...
       
return '';
    }
    public function
getTag()
    {
        return
$this->tag;
    }
}