protected function performCancel($data)
 {
     if (isset($_POST['InterviewCancelForm'])) {
         $interviewCancelForm = new InterviewCancelForm(InterviewCancelForm::TYPE_STU);
         $interviewCancelForm->attributes = $_POST['InterviewCancelForm'];
         if ($interviewCancelForm->validate() && $interviewCancelForm->send()) {
             $data['alertType'] = 'success';
             $data['alertMsg'] = Yii::t('app', 'msg.success.del_interview_resume');
         } else {
             $data['alertType'] = 'error';
             $data['alertMsg'] = Yii::t('app', 'msg.error.del_interview_resume');
         }
     }
     return $data;
 }