| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 16 | public function editable($value, Field $field, HTMLElement $previous): HTMLElement |
||
| 17 | { |
||
| 18 | $textarea = $previous->get('textarea')[0]; |
||
| 19 | $textarea->setTag('div'); |
||
| 20 | $id = $textarea->getAttribute('id')[0]; |
||
| 21 | $previous->appendContent( |
||
| 22 | HTMLElement::factory( |
||
| 23 | 'script', |
||
| 24 | [], |
||
| 25 | "var quill = new Quill('#{$id}', { theme: 'snow' });", |
||
| 26 | true |
||
| 27 | ) |
||
| 28 | ); |
||
| 29 | return $previous; |
||
| 30 | } |
||
| 32 |