protected function showGamePersonSpecialTypes()
 {
     $this->assign('title', 'Spelertypes');
     switch ($this->mode) {
         case 'bewerken':
             $oGamePerson = new GamePersonSpecialType($this->editId);
             $this->editObject($oGamePerson);
             break;
         default:
             $aGamePersons = GamePersonSpecialType::getAll(array(), 'name', 'asc');
             $this->assign('aTypes', $aGamePersons);
             $this->template = '/types.tpl';
             $this->showOutput();
     }
 }