示例#1
0
 public function deleteArea($id)
 {
     $model = Baremo::findOne($id);
     $model->eliminado = 1;
     if ($model->save()) {
         return true;
     } else {
         return false;
     }
 }
示例#2
0
 /**
  * Finds the Baremo model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Baremo the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Baremo::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
示例#3
0
文件: Area.php 项目: rolion/taller1
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getBaremos()
 {
     return $this->hasMany(Baremo::className(), ['id_area' => 'id']);
 }