Example #1
0
 public function Ask(Nether\Project\RealBooter $realboot)
 {
     $realboot->ShowBanner($this->Name)->ShowMessage($this->Info)->ShowPrompt("Setup {$this->Name}?", 'y', function ($yn) {
         if (strtolower($yn) === 'y') {
             $this->SetEnabled(true);
         } else {
             $this->SetEnabled(false);
         }
         return;
     });
     return $this;
 }