Ferreteria/v0.6/clade/Sys/FileSys/list/Nodes/@code/rmv/2025/02/02

From WoozleCodes
Jump to navigation Jump to search
Code Removed on 2025-02-02
2025/02/01 2025/02/02 2025/02/03

Not sure if this was just temporarily commented out, but it's in the way:

#
    public function PathStatus() : StatusIface {
        $oStat = parent::PathStatus();
        $oStat->AddInfo(' : '.$this->SelfNumStatus());
        return $oStat;
    }

    // ++ ACCESS: UI output ++ //

    static protected function FormatValue($v) : string {
        if (is_int($v)) {
            $sOut = $v;
        } elseif(is_a($v,NodeIface::class)) {
            $sOut = $v->Ident()->QSFullSpec()->GetIt();
        } else {
            $sOut = parent::FormatValue($v);
        }
        return $sOut;
    }