Ferreteria/v0.6/clade/boot/Screen/Web/@removed

From Woozle Writes Code
< Ferreteria‎ | v0.6‎ | clade‎ | boot‎ | Screen‎ | Web
Jump to navigation Jump to search
Removed Code

2025-05-13

These were deprecated on 2024-10-17 in favor of Indent classes, but by 2025-03-31 those were deprecated too. As of 2025-05-13, they have finally been replaced by List-objects (use NewList()):

#
    public function OpenList() : string { return "<ul>\n"; }
    public function ShutList() : string { return "</ul>\n"; }
    public function OpenIndent() : string { return "<blockquote>\n"; }
    public function ShutIndent() : string { return "</blockquote>\n"; }
    public function ListItem(string $s) : string { return "<li>$s</li>\n"; }