Ferreteria/v0.6/clade/Config/Style/@removed/Web/List

From Woozle Writes Code
< Ferreteria‎ | v0.6‎ | clade‎ | Config‎ | Style‎ | @removed‎ | Web
Jump to navigation Jump to search
The item documented here has been removed and is no longer in use.

Pages

Code

Entire contents, as deleted on 2026-01-26:

<?php namespace Woozalia\Ferret\IO\O\Style\Web;

use Woozalia\Ferret\IO\O\Style\caList as BaseClass;
use Woozalia\Ferret\IO\O\Style\iList as BaseIface;

interface iList extends BaseIface {}
abstract class caList extends BaseClass implements iList {
    protected function ListPrefix() : string { return '<ul>'.CRLF; }
    protected function ListSuffix() : string { return '</ul>'.CRLF; }
    protected function ItemPrefix() : string { return '<li>'; }
    protected function ItemSuffix() : string { return '</li>'.CRLF; }
}