Ferreteria/v0.5/@cls/caTag: Difference between revisions

From Woozle Writes Code
< Ferreteria‎ | v0.5‎ | @cls
Jump to navigation Jump to search
No edit summary
No edit summary
Line 10: Line 10:
* '''File''': {{l/ferreteria/code|layout/page/html/tag/1.php}}
* '''File''': {{l/ferreteria/code|layout/page/html/tag/1.php}}
==Methods==
==Methods==
Adds nothing except to name two methods for rendering pieces of an HTML tag:
Adds nothing except to name two methods for rendering pieces of an HTML tag, and another method to assemble a tag-opener from them:
<syntaxhighlight lang=php>
<syntaxhighlight lang=php>
abstract protected function GetTagName() : string;
protected function GetTagOpen() : string { /* build output from GetTagName() and GetTagTail() */ }
abstract protected function GetTagName() : string; // what goes <here></here> or <here [...] />
abstract protected function GetTagTail() : string; // attributes
abstract protected function GetTagTail() : string; // attributes
</syntaxhighlight>
</syntaxhighlight>
I ''think'' this doesn't make sense; there should be at least one method which uses these, thus defining their meaning.

Revision as of 17:25, 12 July 2022

Ferreteria class ferret\layout\html\caTag
cElement caTag

→ * \ tag \ caClosable
→ * \ tag \ caUnclosed

Methods

Adds nothing except to name two methods for rendering pieces of an HTML tag, and another method to assemble a tag-opener from them:

protected function GetTagOpen() : string { /* build output from GetTagName() and GetTagTail() */ }
abstract protected function GetTagName() : string; // what goes <here></here> or <here [...] />
abstract protected function GetTagTail() : string; // attributes