Example #1
0
 /**
  * @return int
  */
 public function GetPageSize()
 {
     $size = $this->page->GetQuerystring(QueryStringKeys::PAGE_SIZE);
     if (empty($size)) {
         return Configuration::Instance()->GetKey(ConfigKeys::DEFAULT_PAGE_SIZE);
     }
     return $size;
 }