Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
30 | public function getFieldConfiguration() |
||
31 | { |
||
32 | $customSettings = unserialize($this->CustomSettings); |
||
33 | $content = (isset($customSettings['Content'])) ? $customSettings['Content'] : ''; |
||
34 | $textAreaField = new TextareaField( |
||
35 | $this->getSettingName('Content'), 'HTML', $content |
||
36 | ); |
||
37 | $textAreaField->setRows(4); |
||
38 | $textAreaField->setColumns(20); |
||
39 | |||
40 | return [ |
||
41 | $textAreaField, |
||
42 | ]; |
||
43 | } |
||
44 | |||
56 |