Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
21 | 3 | public function renderBlock(FieldInterface $field, DOMElement $element) |
|
22 | { |
||
23 | 3 | $label = $this->dom->createElement('label'); |
|
24 | 3 | $label->setAttribute('for', $field->getId()); |
|
25 | 3 | $label->appendChild($element); |
|
26 | 3 | $text = new DOMText($field->getLabel()); |
|
27 | 3 | $label->appendChild($text); |
|
28 | 3 | return $label; |
|
29 | } |
||
30 | |||
31 | } |