protected function repair()
 {
     Db::repair();
     echo t('Repair of the Database... Ok!') . '<br />';
 }
 public function repair()
 {
     $this->_checkPost();
     D\Db::repair();
     Header::redirect(Uri::get(PH7_ADMIN_MOD, 'tool', 'index'), t('All tables have been repaired!'));
 }