예제 #1
0
 /**
  * Ajoute l'invitation à la BDD
  */
 private function create()
 {
     $oInvite = new Invites($this->oCurrentUser->getId(), $this->oRequest->getParam('code', 'string'));
     $oInvite->create();
     Logger::log('admin', 'Une invitation a été créée par ' . $this->oCurrentUser->getLogin());
     $this->oView->addAlert('L\'invitation a été créée.', 'success');
 }