bludit/bl-plugins/tinymce/plugin.php

128 lines
3.1 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-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
}
2018-07-07 12:04:34 +02:00
return '<script src="'.$this->htmlPath().'tinymce/tinymce.min.js"></script>';
2017-08-03 23:28:32 +02:00
}
public function adminBodyEnd()
{
global $L;
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-17 22:35:30 +02:00
$min_height = '760';
$content_css = $this->htmlPath().'css/bludit.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-07-07 12:04:34 +02:00
$script = <<<EOF
<script>
// Function required for Media Manager
// Insert an image on the editor in the cursor position
function editorInsertMedia(filename) {
tinymce.activeEditor.insertContent("<img src=\""+filename+"\" alt=\"\">");
}
// Function required for Autosave function
// Returns the content of the editor
function editorGetContent() {
return tinymce.get('jseditor').getContent();
}
2018-10-17 22:35:30 +02:00
function resizeEditor() {
var editor = tinymce.activeEditor;
editor.theme.resizeTo("100%", "500px");
}
2018-07-07 12:04:34 +02:00
tinymce.init({
selector: "#jseditor",
2018-10-17 22:35:30 +02:00
auto_focus: "jseditor",
2018-07-07 12:04:34 +02:00
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,
2018-10-07 15:54:28 +02:00
$document_base_url
2018-07-30 23:43:12 +02:00
plugins: ["$plugins"],
toolbar1: "$toolbar1",
toolbar2: "$toolbar2",
2018-10-01 21:11:09 +02:00
language: "$lang",
2018-10-17 22:35:30 +02:00
content_css : "$content_css",
height: 200
2018-07-07 12:04:34 +02:00
});
</script>
EOF;
return $script;
2017-08-03 23:28:32 +02:00
}
2017-08-03 23:28:32 +02:00
}