1 | <?php |
||
7 | class Configuration |
||
8 | { |
||
9 | |||
10 | protected $baseTemplate = 'PetkoparaCrudGeneratorBundle::base.html.twig'; |
||
11 | protected $bundleViews = false; |
||
12 | protected $filterType = CrudGeneratorCommand::FILTER_TYPE_INPUT; |
||
13 | protected $withoutBulk = false; |
||
14 | protected $withoutShow = false; |
||
15 | protected $withoutWrite = false; |
||
16 | protected $withoutSorting = false; |
||
17 | protected $withoutPageSize = false; |
||
18 | protected $overwrite = false; |
||
19 | protected $routePrefix = ''; |
||
20 | protected $format = 'annotation'; |
||
21 | |||
22 | 6 | public function getCrudActions() |
|
37 | |||
38 | 6 | public function getBaseTemplate() |
|
42 | |||
43 | 6 | public function getBundleViews() |
|
47 | |||
48 | 6 | public function getFilterType() |
|
52 | |||
53 | 16 | public function setBaseTemplate($baseTemplate) |
|
58 | |||
59 | 16 | public function setBundleViews($bundleViews) |
|
64 | |||
65 | 15 | public function setFilterType($filterType) |
|
70 | |||
71 | 6 | public function getWithoutBulk() |
|
75 | |||
76 | public function getWithoutShow() |
||
80 | |||
81 | 15 | public function setWithoutBulk($withoutBulk) |
|
90 | |||
91 | 15 | public function setWithoutShow($withoutShow) |
|
96 | |||
97 | public function getWithoutWrite() |
||
101 | |||
102 | 6 | public function getOverwrite() |
|
106 | |||
107 | 6 | public function getRoutePrefix() |
|
111 | |||
112 | 6 | public function getFormat() |
|
116 | |||
117 | 15 | public function setWithoutWrite($withoutWrite) |
|
121 | |||
122 | 18 | public function setOverwrite($overwrite) |
|
126 | |||
127 | 21 | public function setRoutePrefix($routePrefix) |
|
131 | |||
132 | 21 | public function setFormat($format) |
|
140 | |||
141 | 15 | public function setWithoutSorting($withoutSorting) |
|
146 | |||
147 | |||
148 | 6 | public function getWithoutPageSize() |
|
152 | |||
153 | 15 | public function setWithoutPageSize($withoutPageSize) |
|
158 | |||
159 | |||
160 | |||
161 | |||
162 | |||
163 | |||
164 | } |
||
165 |