blob: 30a7bf81189c9c56dc06d54e4a1db98bcaf756a0 (
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
|
<?php use Fisharebest\Webtrees\Module; ?>
<?php use Fisharebest\Webtrees\View; ?>
<?php if (Module::getModuleByName('ckeditor')) : ?>
<?php View::push('javascript') ?>
<script src="<?= e(WT_CKEDITOR_BASE_URL) ?>ckeditor.js"></script>
<script src="<?= e(WT_CKEDITOR_BASE_URL) ?>adapters/jquery.js"></script>
<script>
var CKEDITOR_BASEPATH = <?= json_encode(WT_CKEDITOR_BASE_URL) ?>;
// 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 ?>
|