예제 #1
0
파일: item.php 프로젝트: alencarmo/OCF
 function getLimit()
 {
     $typ =& $this->getTypeInfo();
     // ha a customlistben limitet allitottak, az felulirja a blockSize-t:
     //var_dump($typ);
     if (isset($typ["listPresentationClassName"]) && $typ["listPresentationClassName"] == "ItemScrollablePresentation") {
         return isset($typ["limit"]) ? "LIMIT {$typ['limit']}" : "";
     } else {
         return parent::getLimit();
     }
 }