Futilities/v0.6/clade/App/@removed

From Woozle Writes Code
< Futilities‎ | v0.6‎ | clade‎ | App
Jump to navigation Jump to search
Removed Code

2025-11-20

Removed on 2025-03-06 and other times:

#    use RoutedTrait;

    // ++ STARTUP ++ //


    // -- STARTUP -- //
    // ++ OBJECTS ++ //

    // 2025-03-06 It looks like this could be replaced with HomeKiosk()...
    private $oOpts = NULL; protected function Kiosk() : iKiosk { return $this->oOpts ?? ($this->oOpts = $this->NewKiosk()); }
    abstract protected function NewKiosk() : iKiosk;

    // -- OBJECTS -- //

2024-12-12

We're now using class-name config methods for this:

#
    // ++ SETUP ++ //

    public function __construct(private string $scKiosk){}
    protected function KioskClass() : string { return $this->scKiosk; }

    // -- SETUP -- //

2024-11-15

Nothing seems to actually use CheckSetup(). If web apps use it, it should be renamed CheckConfig() (but I searched the whole [WFe] folder and found nothing substantial).

#
    // NEW
    protected function CheckSetup() {
        Globals::CheckSetup();
    }