| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 7 | class CMSNicetiesFormFieldExtension extends Extension |
||
| 8 | { |
||
| 9 | |||
| 10 | public function AddToDescription(string $description) |
||
| 11 | { |
||
| 12 | $owner = $this->getOwner(); |
||
| 13 | $descriptionArray = [$owner->getDescription()]; |
||
| 14 | $descriptionArray[] = $description; |
||
| 15 | return $owner->setDescription(implode('<br />', array_filter($descriptionArray))); |
||
| 16 | } |
||
| 17 | |||
| 18 | public function AddToRightTitle(string $description) |
||
| 24 | } |
||
| 25 | |||
| 26 | public function AddToLeftTitle(string $description) |
||
| 34 |