blob: 46bb3d9156e89367a2fb6e29189f746242134906 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php use Fisharebest\Webtrees\Module; ?>
<?php use Fisharebest\Webtrees\View; ?>
<?php use Fisharebest\Webtrees\Webtrees; ?>
<?php if (Module::getModuleByName('ckeditor')) : ?>
<?php View::push('javascript') ?>
<script src="<?= e(Webtrees::CKEDITOR_PATH) ?>ckeditor.js"></script>
<script src="<?= e(Webtrees::CKEDITOR_PATH) ?>adapters/jquery.js"></script>
<script>
var CKEDITOR_BASEPATH = <?= json_encode(Webtrees::CKEDITOR_PATH) ?>;
// Enable for all browsers
CKEDITOR.env.isCompatible = true;
// Disable toolbars
CKEDITOR.config.removePlugins = "forms,newpage,preview,print,save,templates";
CKEDITOR.config.extraAllowedContent = "area[shape,coords,href,target,alt,title];map[name];img[usemap];*[class,style]";
// Activate the editor
$("textarea.html-edit").ckeditor(function(config){config.removePlugins = "forms";}, {
language: "<?= strtolower(WT_LOCALE) ?>"
});
</script>
<?php View::endpush() ?>
<?php endif ?>
|