21 lines
442 B
PHP
21 lines
442 B
PHP
<?php
|
|
/**
|
|
* @class tplNodeValueParent
|
|
* @brief Value node, for all {{tpl:Tag}}
|
|
*
|
|
* @package Clearbricks
|
|
* @subpackage Template
|
|
*
|
|
* @copyright Olivier Meunier & Association Dotclear
|
|
* @copyright GPL-2.0-only
|
|
*/
|
|
|
|
class tplNodeValueParent extends tplNodeValue
|
|
{
|
|
public function compile($tpl)
|
|
{
|
|
// simply ask currently being displayed to display itself!
|
|
return tplNodeBlockDefinition::renderParent($tpl);
|
|
}
|
|
}
|