コード例 #1
0
ファイル: route.php プロジェクト: nibble-arts/oliv
 public static function getPage($urlArray)
 {
     $urlPart = array_pop($urlArray);
     $urlId = (string) OLIVRoute::getUrl($urlPart);
     // url found => return ID
     if ($urlId) {
         return $urlId;
     } else {
         if (count($urlArray)) {
             return OLIVRoute::getPage($urlArray);
         } else {
             return FALSE;
         }
     }
 }