123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <?php
- /* For licensing terms, see /license.txt */
- use Chamilo\CoreBundle\Component\Editor\CkEditor\CkEditor;
- /**
- * A html editor field to use with QuickForm.
- */
- class HtmlEditor extends HTML_QuickForm_textarea
- {
- /** @var \Chamilo\CoreBundle\Component\Editor\Editor */
- public $editor;
- /**
- * Full page.
- */
- public $fullPage;
- /**
- * Class Constructor.
- *
- * @param string $name
- * @param string|array $label HTML editor label
- * @param array $attributes Attributes for the textarea
- * @param array $config optional configuration settings for the online editor
- */
- public function __construct(
- $name,
- $label = null,
- $attributes = [],
- $config = []
- ) {
- if (empty($name)) {
- throw new \Exception('Name is required');
- }
- parent::__construct($name, $label, $attributes);
- $this->_persistantFreeze = true;
- $this->_type = 'html_editor';
- $editor = new CkEditor();
- if ($editor) {
- $this->editor = $editor;
- $this->editor->setName($name);
- $this->editor->processConfig($config);
- }
- }
- /**
- * Return the HTML editor in HTML.
- *
- * @return string
- */
- public function toHtml()
- {
- if ($this->editor) {
- if ($this->editor->getConfigAttribute('fullPage')) {
- $value = $this->getValue();
- if (strlen(trim($value)) == 0) {
- // TODO: To be considered whether here to add
- // language and character set declarations.
- $value = '<!DOCTYPE html><html><head><title></title></head><body></body></html>';
- $this->setValue($value);
- }
- }
- }
- if ($this->isFrozen()) {
- return $this->getFrozenHtml();
- } else {
- $styleCss = $this->editor->getConfigAttribute('style');
- $style = false;
- if ($styleCss) {
- $style = true;
- }
- return $this->buildEditor($style);
- }
- }
- /**
- * Returns the html area content in HTML.
- *
- * @return string
- */
- public function getFrozenHtml()
- {
- return Security::remove_XSS($this->getValue());
- }
- /**
- * @param bool $style
- *
- * @return string
- */
- public function buildEditor($style = false)
- {
- $result = '';
- if ($this->editor) {
- $value = $this->getCleanValue();
- $this->editor->setName($this->getName());
- if ($style === true) {
- $result = $this->editor->createHtmlStyle($value);
- } else {
- $result = $this->editor->createHtml($value);
- }
- }
- return $result;
- }
- }
|