1 | <?php |
||
23 | final class Datagrid implements DatagridInterface |
||
24 | { |
||
25 | private $formFactory; |
||
26 | private $pager; |
||
27 | |||
28 | public function __construct(FormFactoryInterface $formFactory, PagerInterface $pager) |
||
33 | |||
34 | public function getSortParameters(FieldDescriptionInterface $fieldDescription) |
||
38 | |||
39 | public function getPaginationParameters(int $page) |
||
43 | |||
44 | public function getPager() |
||
48 | |||
49 | public function getQuery() |
||
53 | |||
54 | public function getResults() |
||
58 | |||
59 | public function buildPager() |
||
62 | |||
63 | public function addFilter(FilterInterface $filter) |
||
66 | |||
67 | public function getFilters() |
||
71 | |||
72 | public function reorderFilters(array $keys) |
||
75 | |||
76 | public function getValues() |
||
80 | |||
81 | public function getColumns() |
||
85 | |||
86 | public function setValue($name, $operator, $value) |
||
89 | |||
90 | public function getForm() |
||
94 | |||
95 | public function getFilter($name) |
||
99 | |||
100 | public function hasFilter($name) |
||
104 | |||
105 | public function removeFilter($name) |
||
108 | |||
109 | public function hasActiveFilters() |
||
113 | |||
114 | public function hasDisplayableFilters() |
||
118 | } |
||
119 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.