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

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

Files

Just listing these all here now so I can create pages, document the old code, then move everything:

Code

Entire contents from old location, deleted on 2026-01-26:

<?php namespace Woozalia\Ferret\IO\O;
/**
 * PURPOSE:
 *  WAS: common iface for styles - any element, any medium
 *      ...but that idea has been reimplemented elsewhere...
 *      ...and I'm not sure this is even being used now. 2025-04-09
 *
 */

/* Base* [c,i] */ use Woozalia\Ferret\Aux\{ cStandardBase as BaseClass, iStandardBase as BaseIface };

// 2026-01-25 This was moved to [WFe]Config
interface iStyle extends BaseIface {
    // CONFIG
    function PrefixString() : string;
    function SuffixString() : string;
}
abstract class caStyle extends BaseClass implements iStyle {
    // ++ CONFIG ++ //

    public function PrefixString() : string { return ''; }
    public function SuffixString() : string { return ''; }

    // -- CONFIG -- //
}