Complex classes like CatalogManagerFormRow often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use CatalogManagerFormRow, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
17 | class CatalogManagerFormRow extends AbstractHelper |
||
18 | { |
||
19 | const LABEL_APPEND = 'append'; |
||
20 | const LABEL_PREPEND = 'prepend'; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $labelPosition = self::LABEL_PREPEND; |
||
26 | |||
27 | /** |
||
28 | * @var bool |
||
29 | */ |
||
30 | protected $renderErrors = true; |
||
31 | |||
32 | /** |
||
33 | * @var array |
||
34 | */ |
||
35 | protected $labelAttributes; |
||
36 | |||
37 | /** |
||
38 | * @var string |
||
39 | */ |
||
40 | protected $inputErrorClass = 'input-error'; |
||
41 | |||
42 | /** |
||
43 | * @var FormLabel |
||
44 | */ |
||
45 | protected $labelHelper; |
||
46 | |||
47 | /** |
||
48 | * @var FormElement |
||
49 | */ |
||
50 | protected $elementHelper; |
||
51 | |||
52 | /** |
||
53 | * @var FormElementErrors |
||
54 | */ |
||
55 | protected $elementErrorsHelper; |
||
56 | |||
57 | |||
58 | /** |
||
59 | * Utility form helper that renders a label (if it exists), an element and errors |
||
60 | * |
||
61 | * @param ElementInterface $element |
||
62 | * @return string |
||
63 | * @throws \Zend\Form\Exception\DomainException |
||
64 | */ |
||
65 | public function render(ElementInterface $element) |
||
66 | { |
||
67 | $escapeHtmlHelper = $this->getEscapeHtmlHelper(); |
||
68 | $labelHelper = $this->getLabelHelper(); |
||
69 | $elementHelper = $this->getElementHelper(); |
||
70 | $elementErrorsHelper = $this->getElementErrorsHelper(); |
||
71 | |||
72 | $label = $element->getLabel(); |
||
73 | $inputErrorClass = $this->getInputErrorClass(); |
||
74 | $elementErrors = $elementErrorsHelper->render($element); |
||
75 | |||
76 | // Does this element have errors ? |
||
77 | if (!empty($elementErrors) && !empty($inputErrorClass)) { |
||
78 | $classAttributes = ($element->hasAttribute('class') ? $element->getAttribute('class') . ' ' : ''); |
||
79 | $classAttributes = $classAttributes . $inputErrorClass; |
||
80 | |||
81 | $element->setAttribute('class', $classAttributes); |
||
82 | } |
||
83 | |||
84 | $elementString = $elementHelper->render($element); |
||
85 | |||
86 | if (isset($label) && '' !== $label) { |
||
87 | // Translate the label |
||
88 | if (null !== ($translator = $this->getTranslator())) { |
||
89 | $label = $translator->translate( |
||
90 | $label, |
||
91 | $this->getTranslatorTextDomain() |
||
92 | ); |
||
93 | } |
||
94 | |||
95 | $label = $escapeHtmlHelper($label); |
||
96 | $labelAttributes = $element->getLabelAttributes(); |
||
|
|||
97 | |||
98 | if (empty($labelAttributes)) { |
||
99 | $labelAttributes = $this->labelAttributes; |
||
100 | } |
||
101 | |||
102 | // Multicheckbox elements have to be handled differently as the HTML standard does not allow nested |
||
103 | // labels. The semantic way is to group them inside a fieldset |
||
104 | $type = $element->getAttribute('type'); |
||
105 | if ($type === 'multi_checkbox' || $type === 'radio') { |
||
106 | $markup = sprintf( |
||
107 | '<fieldset><legend>%s</legend>%s</fieldset>', |
||
108 | $label, |
||
109 | $elementString |
||
110 | ); |
||
111 | } else { |
||
112 | if ($element->hasAttribute('id')) { |
||
113 | $labelOpen = $labelHelper($element); |
||
114 | $labelClose = ''; |
||
115 | $label = ''; |
||
116 | } else { |
||
117 | $labelOpen = $labelHelper->openTag($labelAttributes); |
||
118 | $labelClose = $labelHelper->closeTag(); |
||
119 | } |
||
120 | |||
121 | if ($label !== '') { |
||
122 | $label = '<span>' . $label . '</span>'; |
||
123 | } |
||
124 | |||
125 | switch ($this->labelPosition) { |
||
126 | case self::LABEL_PREPEND: |
||
127 | $markup = $labelOpen . $label . $elementString . $labelClose; |
||
128 | break; |
||
129 | case self::LABEL_APPEND: |
||
130 | default: |
||
131 | $markup = $labelOpen . $elementString . $label . $labelClose; |
||
132 | break; |
||
133 | } |
||
134 | } |
||
135 | |||
136 | if ($this->renderErrors) { |
||
137 | //$markup .= $elementErrors; |
||
138 | } |
||
139 | } else { |
||
140 | if ($this->renderErrors) { |
||
141 | $markup = $elementString; //. $elementErrors; |
||
142 | } else { |
||
143 | $markup = $elementString; |
||
144 | } |
||
145 | } |
||
146 | |||
147 | return $markup; |
||
148 | } |
||
149 | |||
150 | /** |
||
151 | * Invoke helper as functor |
||
152 | * |
||
153 | * Proxies to {@link render()}. |
||
154 | * |
||
155 | * @param null|ElementInterface $element |
||
156 | * @param null|string $labelPosition |
||
157 | * @param bool $renderErrors |
||
158 | * @return string|FormRow |
||
159 | */ |
||
160 | public function __invoke(ElementInterface $element = null, $labelPosition = null, $renderErrors = true) |
||
161 | { |
||
162 | if (!$element) { |
||
163 | return $this; |
||
164 | } |
||
165 | |||
166 | if ($labelPosition !== null) { |
||
167 | $this->setLabelPosition($labelPosition); |
||
168 | } |
||
169 | |||
170 | $this->setRenderErrors($renderErrors); |
||
171 | |||
172 | return $this->render($element); |
||
173 | } |
||
174 | |||
175 | /** |
||
176 | * Set the label position |
||
177 | * |
||
178 | * @param $labelPosition |
||
179 | * @return FormRow |
||
180 | * @throws \Zend\Form\Exception\InvalidArgumentException |
||
181 | */ |
||
182 | public function setLabelPosition($labelPosition) |
||
183 | { |
||
184 | $labelPosition = strtolower($labelPosition); |
||
185 | if (!in_array($labelPosition, array(self::LABEL_APPEND, self::LABEL_PREPEND))) { |
||
186 | throw new Exception\InvalidArgumentException(sprintf( |
||
187 | '%s expects either %s::LABEL_APPEND or %s::LABEL_PREPEND; received "%s"', |
||
188 | __METHOD__, |
||
189 | __CLASS__, |
||
190 | __CLASS__, |
||
191 | (string) $labelPosition |
||
192 | )); |
||
193 | } |
||
194 | $this->labelPosition = $labelPosition; |
||
195 | |||
196 | return $this; |
||
197 | } |
||
198 | |||
199 | /** |
||
200 | * Get the label position |
||
201 | * |
||
202 | * @return string |
||
203 | */ |
||
204 | public function getLabelPosition() |
||
208 | |||
209 | /** |
||
210 | * Are the errors rendered by this helper ? |
||
211 | * |
||
212 | * @param bool $renderErrors |
||
213 | * @return FormRow |
||
214 | */ |
||
215 | public function setRenderErrors($renderErrors) |
||
216 | { |
||
217 | $this->renderErrors = (bool) $renderErrors; |
||
218 | return $this; |
||
219 | } |
||
220 | |||
221 | /** |
||
222 | * @return bool |
||
223 | */ |
||
224 | public function getRenderErrors() |
||
228 | |||
229 | /** |
||
230 | * Set the attributes for the row label |
||
231 | * |
||
232 | * @param array $labelAttributes |
||
233 | * @return FormRow |
||
234 | */ |
||
235 | public function setLabelAttributes($labelAttributes) |
||
236 | { |
||
237 | $this->labelAttributes = $labelAttributes; |
||
238 | return $this; |
||
239 | } |
||
240 | |||
241 | /** |
||
242 | * Get the attributes for the row label |
||
243 | * |
||
244 | * @return array |
||
245 | */ |
||
246 | public function getLabelAttributes() |
||
250 | |||
251 | /** |
||
252 | * Set the class that is added to element that have errors |
||
253 | * |
||
254 | * @param string $inputErrorClass |
||
255 | * @return FormRow |
||
256 | */ |
||
257 | public function setInputErrorClass($inputErrorClass) |
||
258 | { |
||
259 | $this->inputErrorClass = $inputErrorClass; |
||
260 | return $this; |
||
261 | } |
||
262 | |||
263 | /** |
||
264 | * Get the class that is added to element that have errors |
||
265 | * |
||
266 | * @return string |
||
267 | */ |
||
268 | public function getInputErrorClass() |
||
272 | |||
273 | /** |
||
274 | * Retrieve the FormLabel helper |
||
275 | * |
||
276 | * @return FormLabel |
||
277 | */ |
||
278 | protected function getLabelHelper() |
||
279 | { |
||
280 | if ($this->labelHelper) { |
||
281 | return $this->labelHelper; |
||
282 | } |
||
283 | |||
284 | if (method_exists($this->view, 'plugin')) { |
||
285 | $this->labelHelper = $this->view->plugin('form_label'); |
||
286 | } |
||
287 | |||
288 | if (!$this->labelHelper instanceof FormLabel) { |
||
289 | $this->labelHelper = new FormLabel(); |
||
290 | } |
||
291 | |||
292 | if ($this->hasTranslator()) { |
||
293 | $this->labelHelper->setTranslator( |
||
294 | $this->getTranslator(), |
||
295 | $this->getTranslatorTextDomain() |
||
296 | ); |
||
297 | } |
||
298 | |||
299 | return $this->labelHelper; |
||
300 | } |
||
301 | |||
302 | /** |
||
303 | * Retrieve the FormElement helper |
||
304 | * |
||
305 | * @return FormElement |
||
306 | */ |
||
307 | protected function getElementHelper() |
||
323 | |||
324 | /** |
||
325 | * Retrieve the FormElementErrors helper |
||
326 | * |
||
327 | * @return FormElementErrors |
||
328 | */ |
||
329 | protected function getElementErrorsHelper() |
||
345 | } |
||
346 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.