Vanilla 1.1.5 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:class BodyHeader
{
function BodyHeader(&$Context)
{
$this->Context = &$Context;
}
function Render()
{
$this->Context->Writer->Write('Your header here');
}
}
$BodyHeader = $Context->ObjectFactory->NewContextObject($Context, 'BodyHeader');
$Body->AddControl($BodyHeader);
1 to 10 of 10