コード例 #1
0
ファイル: BaremoNegocio.php プロジェクト: rolion/taller1
 public function deleteArea($id)
 {
     $model = Baremo::findOne($id);
     $model->eliminado = 1;
     if ($model->save()) {
         return true;
     } else {
         return false;
     }
 }
コード例 #2
0
ファイル: BaremoController.php プロジェクト: rolion/taller1
 /**
  * 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']);
 }