CKEditor PHP Entegrasyonu

0 Cevap php

temelde Codeigniter içinde ckeditor entegre ama benim problem vasıl tüm CI anlamına gelmez sanırım. Her neyse benim sorunum config.protectedSource.push( /<\?[\s\S]*?\?>/g );

Dize görünüyor kaçtığından beri CKEditor Sınıf onu kaçan çünkü, ben sadece yapılandırma dizide yerleştirebilirsiniz olamaz.

Herkes nasıl bu işi yapabilir biliyor mu? Teşekkürler

<?php echo $this->ckeditor->editor('page-content', $cktext, array('toolbar' => array(array('Bold', 'Italic', 'Underline', 'Strike', 'Blockquote', 'NumberedList', 'BulletedList', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', 'Link', 'Unlink'), array('Source'), '/', array('Format', 'TextColor'), array('Cut', 'Copy', 'Paste', 'Image')), 'protectedSource.push' => "/<\?[\s\S]*?\?>/g")); ?>

Bu çıkış:

<script type="text/javascript">//<![CDATA[ CKEDITOR.replace('page-content', { "toolbar": [ [ "Bold", "Italic", "Underline", "Strike", "Blockquote", "NumberedList", "BulletedList", "JustifyLeft", "JustifyCenter", "JustifyRight", "JustifyBlock", "Link", "Unlink" ], [ "Source" ], "\/", [ "Format", "TextColor" ], [ "Cut", "Copy", "Paste", "Image" ] ], "protectedSource.push": "\/<\\?[\\s\\S]*?\\?>\/g" }); //]]></script>

0 Cevap