Beispiel #1
0
 public function executeDelete()
 {
     $outbox_stu = OutboxStuPeer::retrieveByPk($this->getRequestParameter('id'));
     $this->forward404Unless($outbox_stu);
     $outbox_stu->delete();
     return $this->redirect('student_outmail/list');
 }