1 | <?php |
||
27 | abstract class DefaultDataTablesRepository extends EntityRepository implements DataTablesRepositoryInterface { |
||
28 | |||
29 | /** |
||
30 | * Build a DataTables query builder "Count exported". |
||
31 | * |
||
32 | * @param DataTablesProviderInterface $dtProvider The provider. |
||
33 | * @return QueryBuilder Returns the DataTables query builder "Count exported". |
||
34 | */ |
||
35 | protected function buildDataTablesCountExported(DataTablesProviderInterface $dtProvider) { |
||
47 | |||
48 | /** |
||
49 | * Build a DataTables query builder "Count filtered". |
||
50 | * |
||
51 | * @param DataTablesWrapper $dtWrapper The wrapper. |
||
52 | * @return QueryBuilder Returns the DataTables query builder "Count filtered". |
||
53 | */ |
||
54 | protected function buildDataTablesCountFiltered(DataTablesWrapper $dtWrapper) { |
||
69 | |||
70 | /** |
||
71 | * Build a DataTables query builder "Count total". |
||
72 | * |
||
73 | * @param DataTablesWrapper $dtWrapper The wrapper. |
||
74 | * @return QueryBuilder Returns the DataTables query builder "Count total". |
||
75 | */ |
||
76 | protected function buildDataTablesCountTotal(DataTablesWrapper $dtWrapper) { |
||
88 | |||
89 | /** |
||
90 | * Build a DataTables query builder "Export all". |
||
91 | * |
||
92 | * @param DataTablesProviderInterface $dtProvider The provider. |
||
93 | * @return QueryBuilder Returns the DataTables query builder "Export all". |
||
94 | */ |
||
95 | protected function buildDataTablesExportAll(DataTablesProviderInterface $dtProvider) { |
||
103 | |||
104 | /** |
||
105 | * Build a DataTables query builder "Find all". |
||
106 | * |
||
107 | * @param DataTablesWrapper $dtWrapper The wrapper. |
||
108 | * @return QueryBuilder Returns the DataTables query builder "Find all". |
||
109 | */ |
||
110 | protected function buildDataTablesFindAll(DataTablesWrapper $dtWrapper) { |
||
127 | |||
128 | /** |
||
129 | * {@inheritdoc} |
||
130 | */ |
||
131 | public function dataTablesCountExported(DataTablesProviderInterface $dtProvider) { |
||
139 | |||
140 | /** |
||
141 | * {@inheritdoc} |
||
142 | */ |
||
143 | public function dataTablesCountFiltered(DataTablesWrapper $dtWrapper) { |
||
151 | |||
152 | /** |
||
153 | * {@inheritdoc} |
||
154 | */ |
||
155 | public function dataTablesCountTotal(DataTablesWrapper $dtWrapper) { |
||
163 | |||
164 | /** |
||
165 | * {@inheritdoc} |
||
166 | */ |
||
167 | public function dataTablesExportAll(DataTablesProviderInterface $dtProvider) { |
||
170 | |||
171 | /** |
||
172 | * {@inheritdoc} |
||
173 | */ |
||
174 | public function dataTablesFindAll(DataTablesWrapper $dtWrapper) { |
||
182 | |||
183 | } |
||
184 |