Ferreteria/v0.5/layout/event/onrender: Difference between revisions

From Woozle Writes Code
< Ferreteria‎ | v0.5‎ | layout‎ | event
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{fmt/title|'''[[../|layout]]''' system: <code>OnRender()</code> method}}
{{fmt/title|'''[[../|layout]]''' system: <code>OnRender()</code> method}}
==About==
==About==
This method is called by objects of the {{l/ver/class|cEventNodeRender}} class.
This method is called by objects of the {{l/ver/class|cEventNodeRender}} class. Its job is to funnel the object's output (typically from {{l/ver/meth|layout|RenderOutput}}) into the given Event object ($oe) via <code>$oe->Append()</code>.
==Specs==
==Specs==
* Form: <syntaxhighlight lang=php inline>public function OnRender(cEventNodeRender $oe) : void</syntaxhighlight>
* Form: <syntaxhighlight lang=php inline>public function OnRender(cEventNodeRender $oe) : void</syntaxhighlight>

Revision as of 21:48, 13 July 2022

layout system: OnRender() method

About

This method is called by objects of the cEventNodeRender class. Its job is to funnel the object's output (typically from RenderOutput()) into the given Event object ($oe) via $oe->Append().

Specs