| Total Complexity | 2 |
| Total Lines | 51 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class TinyMce extends Editor |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Return the HTML code required to run editor. |
||
| 17 | * |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | public function createHtml() |
||
| 21 | { |
||
| 22 | $html = '<textarea id="'.$this->name.'" name="'.$this->name.'" class="ckeditor" >'.$this->value.'</textarea>'; |
||
| 23 | $html .= $this->editorReplace(); |
||
| 24 | |||
| 25 | return $html; |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | public function editorReplace() |
||
| 64 | } |
||
| 65 | } |
||
| 66 |