bludit/bl-plugins/tinymce/plugin.php

124 lines
3.2 KiB
PHP
Raw Normal View History

2017-08-03 23:28:32 +02:00
<?php
class pluginTinymce extends Plugin {
2017-08-06 00:52:00 +02:00
private $loadOnController = array(
2017-10-02 22:42:18 +02:00
'new-content',
'edit-content'
2017-08-03 23:28:32 +02:00
);
2018-07-30 23:43:12 +02:00
public function init()
{
$this->dbFields = array(
'toolbar1'=>'formatselect bold italic bullist numlist | blockquote alignleft aligncenter alignright | link unlink pagebreak image removeformat code',
2018-07-30 23:43:12 +02:00
'toolbar2'=>'',
2018-10-17 22:35:30 +02:00
'plugins'=>'code autolink image link pagebreak advlist lists textcolor colorpicker textpattern autoheight'
2018-07-30 23:43:12 +02:00
);
}
public function form()
{
global $L;
2018-07-30 23:43:12 +02:00
$html = '<div>';
$html .= '<label>'.$L->get('Toolbar top').'</label>';
2018-08-02 22:33:53 +02:00
$html .= '<input name="toolbar1" id="jstoolbar1" type="text" value="'.$this->getValue('toolbar1').'">';
2018-07-30 23:43:12 +02:00
$html .= '</div>';
$html .= '<div>';
$html .= '<label>'.$L->get('Toolbar bottom').'</label>';
2018-08-02 22:33:53 +02:00
$html .= '<input name="toolbar2" id="jstoolbar2" type="text" value="'.$this->getValue('toolbar2').'">';
2018-07-30 23:43:12 +02:00
$html .= '</div>';
$html .= '<div>';
$html .= '<label>'.$L->get('Plugins').'</label>';
2018-08-02 22:33:53 +02:00
$html .= '<input name="plugins" id="jsplugins" type="text" value="'.$this->getValue('plugins').'">';
2018-07-30 23:43:12 +02:00
$html .= '</div>';
return $html;
}
2017-08-03 23:28:32 +02:00
public function adminHead()
{
2018-10-18 22:40:35 +02:00
// Load the plugin only in the controllers setted in $this->loadOnController
2018-07-07 12:04:34 +02:00
if (!in_array($GLOBALS['ADMIN_CONTROLLER'], $this->loadOnController)) {
return false;
2017-08-03 23:28:32 +02:00
}
2019-01-26 10:34:48 +01:00
return '<script src="'.$this->htmlPath().'tinymce/tinymce.min.js"></script>';
2017-08-03 23:28:32 +02:00
}
public function adminBodyEnd()
{
2018-10-18 22:48:18 +02:00
global $L;
2018-10-18 22:40:35 +02:00
// Load the plugin only in the controllers setted in $this->loadOnController
2018-07-07 12:04:34 +02:00
if (!in_array($GLOBALS['ADMIN_CONTROLLER'], $this->loadOnController)) {
return false;
}
$toolbar1 = $this->getValue('toolbar1');
$toolbar2 = $this->getValue('toolbar2');
2018-10-18 22:40:35 +02:00
$content_css = $this->htmlPath().'css/tinymce.css';
2018-08-02 22:33:53 +02:00
$plugins = $this->getValue('plugins');
2018-07-30 23:43:12 +02:00
$lang = 'en';
if (file_exists($this->phpPath().'tinymce'.DS.'langs'.DS.$L->currentLanguage().'.js')) {
$lang = $L->currentLanguage();
} elseif (file_exists($this->phpPath().'tinymce'.DS.'langs'.DS.$L->currentLanguageShortVersion().'.js')) {
$lang = $L->currentLanguageShortVersion();
2018-07-30 23:43:12 +02:00
}
2018-10-07 15:54:28 +02:00
if (IMAGE_RELATIVE_TO_ABSOLUTE) {
$document_base_url = 'document_base_url: "'.DOMAIN_UPLOADS.'",';
} else {
$document_base_url = '';
}
2018-10-18 22:40:35 +02:00
$html = <<<EOF
2018-07-07 12:04:34 +02:00
<script>
2019-02-19 08:38:17 +01:00
// Insert an image in the editor at the cursor position
2018-10-18 22:40:35 +02:00
// Function required for Bludit
function editorInsertMedia(filename) {
tinymce.activeEditor.insertContent("<img src=\""+filename+"\" alt=\"\">");
}
// Returns the content of the editor
// Function required for Bludit
function editorGetContent() {
return tinymce.get('jseditor').getContent();
}
tinymce.init({
selector: "#jseditor",
auto_focus: "jseditor",
theme: "modern",
skin: "bludit",
element_format : "html",
entity_encoding : "raw",
schema: "html5",
statusbar: false,
menubar:false,
branding: false,
browser_spellcheck: true,
pagebreak_separator: PAGE_BREAK,
paste_as_text: true,
remove_script_host: false,
convert_urls: true,
relative_urls: false,
2019-02-03 14:34:21 +01:00
valid_elements: "*[*]",
2018-10-18 22:40:35 +02:00
$document_base_url
plugins: ["$plugins"],
toolbar1: "$toolbar1",
toolbar2: "$toolbar2",
language: "$lang",
content_css : "$content_css",
height: "200px"
});
2018-07-07 12:04:34 +02:00
</script>
EOF;
2018-10-18 22:40:35 +02:00
return $html;
2017-08-03 23:28:32 +02:00
}
2017-08-03 23:28:32 +02:00
}