Hesk v3.2.0
This commit is contained in:
38
hesk/inc/tiny_mce/tinymce.inc.php
Normal file
38
hesk/inc/tiny_mce/tinymce.inc.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of HESK - PHP Help Desk Software.
|
||||
*
|
||||
* (c) Copyright Klemen Stirn. All rights reserved.
|
||||
* https://www.hesk.com
|
||||
*
|
||||
* For the full copyright and license agreement information visit
|
||||
* https://www.hesk.com/eula.php
|
||||
*
|
||||
*/
|
||||
|
||||
/* Check if this is a valid include */
|
||||
if (!defined('IN_SCRIPT')) {die('Invalid attempt');}
|
||||
|
||||
|
||||
function hesk_tinymce_init($selector='#message')
|
||||
{
|
||||
?>
|
||||
<script>
|
||||
tinymce.init({
|
||||
selector: '<?php echo $selector; ?>',
|
||||
convert_urls: false,
|
||||
branding: false,
|
||||
browser_spellcheck: true,
|
||||
toolbar: 'undo redo | styleselect fontselect fontsizeselect | bold italic underline | alignleft aligncenter alignright alignjustify | forecolor backcolor | bullist numlist outdent indent | link unlink image codesample code',
|
||||
plugins: 'charmap code codesample image link lists table',
|
||||
height: 350,
|
||||
toolbar_mode: 'sliding',
|
||||
mobile: {
|
||||
toolbar_mode: 'scrolling',
|
||||
height: 300
|
||||
}
|
||||
});
|
||||
</script>
|
||||
<?php
|
||||
} // END hesk_tinymce_init()
|
||||
Reference in New Issue
Block a user