1 | <?php |
||
18 | class CRUDElement extends SimpleAdminElement |
||
19 | { |
||
20 | private $dataGridFactory; |
||
21 | private $dataSourceFactory; |
||
22 | private $formFactory; |
||
23 | |||
24 | public function setDataGridFactory(DataGridFactoryInterface $factory) |
||
28 | |||
29 | public function setDataSourceFactory(DataSourceFactoryInterface $factory) |
||
33 | |||
34 | public function setFormFactory(FormFactoryInterface $factory) |
||
38 | |||
39 | public function isFormAware() |
||
43 | |||
44 | public function isDataGridAware() |
||
48 | |||
49 | public function isDataSourceAware() |
||
53 | } |
||
54 |