21287 Posts in 5733 Topics by 2602 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 527 Views |
-
Disable "Upload file" in tinymcy image editor

12 February 2011 at 1:42am
Is this possible without hacking the code?
I want to force my users to only upload using "Files and Images" tab until they are a bit more established.
Many thanks
Martin -
Re: Disable "Upload file" in tinymcy image editor

12 February 2011 at 1:54am
Alright,
take a look at... http://api.silverstripe.org/trunk/forms/fields-formattedinput/HtmlEditorConfig.html
I use..
HtmlEditorConfig::get('cms')->insertButtonsBefore('formatselect', 'fontselect');
...in my _config.php to *add* something, maybe one of the other functions like "modifyButtons" might help? -
Re: Disable "Upload file" in tinymcy image editor

12 February 2011 at 2:48am Last edited: 12 February 2011 2:49am
Well, i think i've got a rather hacky solution:
1. create a file hideUpload.js in mysite/javascript/ with this code:
(function($) {
$("#Form_EditorToolbarImageForm p.showUploadField").hide();
})(jQuery);2. add this line to your mysite/_config.php
LeftAndMain::require_javascript('mysite/javascript/hideUpload.js');
This will hide the the image upload thingy from your users.
Cheers,
Christian
| 527 Views | ||
|
Page:
1
|
Go to Top |



