/**
  *
  * @param int $itemsPerPage - How many items should be displayed per page
  */
 public function __construct($itemsPerPage = null)
 {
     $this->itemsPerPage = $itemsPerPage ?: GridFieldPaginator::config()->get('default_items_per_page');
 }