I don't know php. How can I setup htmlpurifier for ckeditor3? I am using this configuration:
$('.textInput').ckeditor({
filebrowserBrowseUrl: 'myurl/ckfinder.html',
filebrowserUploadUrl: 'CMS/Admin/UploadFile',
toolbar: [
{ name: 'document', items: ['Source', '-', 'Undo', 'Redo'] }, // View source, undo & redo
{ name: 'alignment', items: ['JustifyLeft', 'JustifyCenter', 'JustifyRight'] }, // Align
//{ name: 'clipboard', items: ['Cut', 'Copy', 'Paste'] }, // Copy & Paste
{ name: 'basicstyles', items: ['Bold', 'Italic', 'TextColor', '-', 'RemoveFormat'] }, // styles
{ name: 'objects-n-links', items: ['Image', 'Flash', 'Table', 'HorizontalRule', 'SpecialChar'] }, // to insert
{ name: 'links', items: ['Link', 'Unlink'] }, // links
{ name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent'] }, //formatting
{ name: 'selects', items: ['FontSize', ] } //Dropdown lists
],
enterMode: CKEDITOR.ENTER_BR,
shiftEnterMode: CKEDITOR.ENTER_P
});
anyone!?
anyone!?