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

From Woozle Writes Code
< Ferreteria‎ | v0.5‎ | layout‎ | event
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 26: Line 26:
cDropinLink
cDropinLink
==About==
==About==
This method is at the top of the rendering hierarchy for any given element object. Its job is to assemble all the bits of output for which it might be responsible, including any twigs.
This method is at the top of the rendering hierarchy for any given element object. Its job is to ultimately to assemble all the bits of output for which it might be responsible, but this is generally done by invoking {{l/ver/meth|layout/event|RenderValue}} and adding any necessary formatting or conditions.
==Specs==
==Specs==
* Form: <syntaxhighlight lang=php inline>public function RenderOutput() : string</syntaxhighlight>
* Form: <syntaxhighlight lang=php inline>public function RenderOutput() : string</syntaxhighlight>

Revision as of 23:47, 18 July 2022

layout system: RenderOutput() method

cElement

caNavElementcaLinkElement\ferret\cMenuLink\ferret\cArrayLink\ferret\caDynamicLink → \ferret\cDropinLink
.\html\caContentHeader.\html\cLoginContentHeader

.\html\caTag

.\html\tag\caUnclosed
.\html\tag\caClosable

cDropinLink

About

This method is at the top of the rendering hierarchy for any given element object. Its job is to ultimately to assemble all the bits of output for which it might be responsible, but this is generally done by invoking RenderValue() and adding any necessary formatting or conditions.

Specs