コード例 #1
0
ファイル: Event.inc.php プロジェクト: alcexhim/PhoenixSNS
 public static function GetByIDOrName($idOrName)
 {
     if (is_numeric($idOrName)) {
         return Event::GetByID($idOrName);
     }
     return Event::GetByName($idOrName);
 }