1 | <?php |
||
24 | class IndexPage extends SymfonyPage implements IndexPageInterface |
||
25 | { |
||
26 | /** |
||
27 | * @var TableAccessorInterface |
||
28 | */ |
||
29 | private $tableAccessor; |
||
30 | |||
31 | /** |
||
32 | * @var string |
||
33 | */ |
||
34 | private $resourceName; |
||
35 | |||
36 | /** |
||
37 | * @param Session $session |
||
38 | * @param array $parameters |
||
39 | * @param RouterInterface $router |
||
40 | * @param TableAccessorInterface $tableAccessor |
||
41 | * @param string $resourceName |
||
42 | */ |
||
43 | public function __construct( |
||
55 | |||
56 | /** |
||
57 | * {@inheritdoc} |
||
58 | */ |
||
59 | public function isSingleResourceOnPage(array $parameters) |
||
71 | |||
72 | /** |
||
73 | * {@inheritdoc} |
||
74 | */ |
||
75 | public function getColumnFields($columnName) |
||
79 | |||
80 | /** |
||
81 | * {@inheritdoc} |
||
82 | */ |
||
83 | public function sortBy($fieldName) |
||
90 | |||
91 | /** |
||
92 | * {@inheritdoc} |
||
93 | */ |
||
94 | public function isSingleResourceWithSpecificElementOnPage(array $parameters, $element) |
||
110 | |||
111 | /** |
||
112 | * @return int |
||
113 | */ |
||
114 | public function countItems() |
||
122 | |||
123 | /** |
||
124 | * {@inheritdoc} |
||
125 | */ |
||
126 | public function deleteResourceOnPage(array $parameters) |
||
136 | |||
137 | public function filter() |
||
141 | |||
142 | /** |
||
143 | * {@inheritdoc} |
||
144 | */ |
||
145 | public function getRouteName() |
||
149 | |||
150 | /** |
||
151 | * @return TableAccessorInterface |
||
152 | */ |
||
153 | protected function getTableAccessor() |
||
157 | |||
158 | /** |
||
159 | * {@inheritdoc} |
||
160 | */ |
||
161 | protected function getDefinedElements() |
||
168 | } |
||
169 |