コード例 #1
0
ファイル: CategoryController.php プロジェクト: suyuanen/p2p
 /**
  * Finds the Category model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Category the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Category::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
コード例 #2
0
ファイル: Post.php プロジェクト: suyuanen/p2p
 public function getCategoryModel()
 {
     return Category::findOne($this->category_id);
 }