コード例 #1
0
ファイル: User.php プロジェクト: NewPaltzKarateAcademy/KIMS
 /**
  * Each user can only be affiliated with one school at a time;
  * Admins can change their school at any time.
  * @return \yii\db\ActiveQuery
  */
 public function getSchool()
 {
     return School::findOne($this->schoolId);
 }
コード例 #2
0
 /**
  * Finds the School model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $id
  * @return School the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = School::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }