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

From Woozle Writes Code
< Futilities‎ | v0.6‎ | clade‎ | App
Revision as of 22:06, 20 November 2025 by Woozle (talk | contribs) (Created page with "{{fmt/title|Removed Code}} =={{fmt/date|2025|11|20}}== Removed on {{fmt/date|2025|03|06}} and other times: {{fmt/php/block|1= # 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() : iKios...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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();
    }