bludit/bl-plugins/tinymce/plugin.php

115 lines
2.8 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 pagebreak image removeformat code',
'toolbar2'=>'',
'plugins'=>'code autolink image link pagebreak advlist lists textcolor colorpicker textpattern'
);
}
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()
{
2018-07-07 12:04:34 +02:00
if (!in_array($GLOBALS['ADMIN_CONTROLLER'], $this->loadOnController)) {
return false;
}
global $L;
2017-08-03 23:28:32 +02:00
2018-08-02 22:33:53 +02:00
$toolbar1 = $this->getValue('toolbar1');
$toolbar2 = $this->getValue('toolbar2');
$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-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();
}
$("#jseditor").show();
tinymce.init({
selector: "#jseditor",
theme: "modern",
skin: "bludit",
min_height: 500,
max_height: 1000,
element_format : "html",
entity_encoding : "raw",
schema: "html5",
statusbar: false,
menubar:false,
remove_script_host: false,
branding: false,
browser_spellcheck: true,
pagebreak_separator: PAGE_BREAK,
paste_as_text: true,
relative_urls: true,
remove_script_host: false,
document_base_url: DOMAIN_UPLOADS,
2018-07-30 23:43:12 +02:00
plugins: ["$plugins"],
toolbar1: "$toolbar1",
toolbar2: "$toolbar2",
language: "$lang"
2018-07-07 12:04:34 +02:00
});
</script>
EOF;
return $script;
2017-08-03 23:28:32 +02:00
}
}