You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
1.1 KiB
PHP
21 lines
1.1 KiB
PHP
<SCRIPT LANGUAGE="JavaScript">
|
|
var editor;
|
|
KindEditor.ready(function(K) {
|
|
editor = K.create('#ic_content', {
|
|
width : '100%',
|
|
height:'800px',
|
|
fullscreenMode:true,
|
|
allowImageUpload:false,
|
|
items : [
|
|
'source', '|', 'undo', 'redo', '|', 'preview', 'cut', 'copy', 'paste', 'plainpaste', 'wordpaste', '|',
|
|
'justifyleft', 'justifycenter', 'justifyright', 'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', '|',
|
|
'clearhtml', 'quickformat','removeformat', 'selectall', '/','fullscreen', '|',
|
|
'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold',
|
|
'italic', 'underline', 'strikethrough', 'lineheight', '|', 'table', 'hr', 'emoticons','image', 'map', 'pagebreak',
|
|
'link', 'unlink', '|', 'about'
|
|
]
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<textarea id="ic_content" name="ic_content" class="infoCon"><?php echo str_replace($this->config->item('site_image_url'),$this->config->item('media_image_url'),$log_info->log_content); ?></textarea>
|