示例#1
0
 /**
  * Deletes a web form record with the specified id 
  * @param int $id
  */
 public function actionDeleteWebForm($id)
 {
     $model = WebForm::model()->findByPk($id);
     $name = $model->name;
     $success = false;
     if ($model) {
         $success = $model->delete();
     }
     AuxLib::ajaxReturn($success, Yii::t('app', "Deleted '{$name}'"), Yii::t('app', 'Unable to delete web form'));
 }