AEOS/lib/wysiwyg.lib.php
2026-08-26 17:23:29 +02:00

24 lines
No EOL
570 B
PHP

<?php
// Script owEditor/pell
if (isset($_['input']))
{
$currentContent=stripslashes($_['input']);
}
else
{
$currentContent=@$page['page']['contenu']['#text'];
}
?>
<script type="text/javascript">
var editor = window.pell.init({
element: document.getElementById('editor'),
defaultParagraphSeparator: 'p',
onChange: function (html) {
document.getElementById('html-output').textContent = html
},
})
document.getElementById("pell-id").innerHTML = `<?php echo $currentContent; ?>`;
</script>