コード例 #1
0
 /**
  * Finds the Empleado model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Empleado the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = TiposAtributo::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
コード例 #2
0
ファイル: Atributos.php プロジェクト: rzamarripa/du
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTipoAtributo()
 {
     return $this->hasOne(TiposAtributo::className(), ['id' => 'tipoAtributoId']);
 }