Futilities/v0.6/clade/Sys/Opts/Spider/@removed

From WoozleCodes
Jump to navigation Jump to search
Removed Code
  • 2026-04-28 These should be obsolete now because defining options is the job of the ui.xml file.
#
    const ksOPT_SHOW_COMMANDS   = 'show.cmd';   // show each command used (grep)
    const ksOPT_USE_SUDO        = 'use.sudo'  ; // where possible/applicable, use sudo

    protected function SetupOptions() {
        parent::SetupOptions();
        $this->SetupSpiderOptions();
    }
    protected function SetupSpiderOptions() {
        $this->AddAppOptions([
          self::ksOPT_LIST_FOUND    => ['-lf','--list-found'],
        ]);
    }