Ferreteria/v0.5/@cls/caWebPage: Difference between revisions
< Ferreteria | v0.5 | @cls
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
|} | |} | ||
* '''Source''': {{l/ferreteria/code|layout/page/1.php}} | * '''Source''': {{l/ferreteria/code|layout/page/1.php}} | ||
==Startup== | |||
This is a singleton class. It expects the main App object to call <code>DoAllEvents</code>, which then runs the event-sequence needed to process input and generate an output page with the appropriate contents. | |||
==Methods== | ==Methods== | ||
* DoBuilding() | * <code>DoAllEvents</code> calls the following: | ||
* DoFiguring() | ** <code>DoBuilding()</code> creates and propagates a {{l/ver/class|cEventNodeBuild}} event | ||
* DoOutput() | ** <code>DoFiguring()</code> creates and propagates a {{l/ver/class|cEventNodeFigure}} event | ||
** <code>DoOutput()</code> creates and propagates a {{l/ver/class|cEventNodeRender}} event, and echoes its output to the display. |
Revision as of 15:58, 25 July 2022
cElement → | caWebPage → | caHypertextPage |
- Source: layout/page/1.php
Startup
This is a singleton class. It expects the main App object to call DoAllEvents
, which then runs the event-sequence needed to process input and generate an output page with the appropriate contents.
Methods
DoAllEvents
calls the following:DoBuilding()
creates and propagates a cEventNodeBuild eventDoFiguring()
creates and propagates a cEventNodeFigure eventDoOutput()
creates and propagates a cEventNodeRender event, and echoes its output to the display.