1 | <?php |
||
21 | class SearchProvider implements DataProviderInterface |
||
22 | { |
||
23 | |||
24 | public function getCriteria() |
||
28 | |||
29 | public function getData($refresh = false) |
||
33 | |||
34 | public function getItemCount($refresh = false) |
||
38 | |||
39 | public function getModel() |
||
43 | |||
44 | public function getPagination($className = Pagination::class) |
||
48 | |||
49 | public function getSort() |
||
53 | |||
54 | public function getTotalItemCount() |
||
58 | |||
59 | public function setCriteria($criteria) |
||
63 | |||
64 | public function setModel(AnnotatedInterface $model) |
||
68 | |||
69 | public function setPagination($pagination) |
||
73 | |||
74 | public function setSort(SortInterface $sort) |
||
78 | |||
79 | } |
||
80 |