Current oav website
This commit is contained in:
@ -0,0 +1,20 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user