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) |
|
86 | |||
87 | 15 | public function setWithoutShow($withoutShow) |
|
92 | |||
93 | public function getWithoutWrite() |
||
97 | |||
98 | 6 | public function getOverwrite() |
|
102 | |||
103 | 6 | public function getRoutePrefix() |
|
107 | |||
108 | 6 | public function getFormat() |
|
112 | |||
113 | 15 | public function setWithoutWrite($withoutWrite) |
|
117 | |||
118 | 18 | public function setOverwrite($overwrite) |
|
122 | |||
123 | 21 | public function setRoutePrefix($routePrefix) |
|
127 | |||
128 | 21 | public function setFormat($format) |
|
136 | |||
137 | 15 | public function setWithoutSorting($withoutSorting) |
|
142 | |||
143 | |||
144 | 6 | public function getWithoutPageSize() |
|
148 | |||
149 | 15 | public function setWithoutPageSize($withoutPageSize) |
|
154 | |||
155 | |||
156 | |||
157 | |||
158 | |||
159 | |||
160 | } |
||
161 |