Merge pull request #4630 from marcokernler/paginated-list-total-items

Total Items of a Paginated List
This commit is contained in:
Loz Calver 2015-10-01 09:19:26 +01:00
commit ab5aaf5afc

View File

@ -434,6 +434,13 @@ class PaginatedList extends SS_ListDecorator {
}
}
/**
* Returns the total number of items in the list
*/
public function TotalItems() {
return $this->getTotalItems();
}
/**
* Set the request object for this list
*