예제 #1
0
파일: MY_ORM.php 프로젝트: HarriLu/gallery3
 /**
  * Make sure that we're only using integer ids.
  */
 static function factory($model, $id = null)
 {
     if ($id && !is_int($id) && !is_string($id)) {
         throw new Exception("@todo ORM::factory requires integer ids");
     }
     return ORM_Core::factory($model, (int) $id);
 }