How to Disable Resize in CKEditor and Change Language to English in php? -


I want to disable ckeditor in PHP and its default language in English changes.

I load the ckeditor in php below:

    

Enter image details here

Try this:

  $ config ['language'] = 'en'; $ Config ['removePlugins'] = 'resize'; // Change the image size $ config ['resize_enabled'] = Wrong; Start the CKeditor like: // deny size   

and like:

  $ CKeditor-> editor ("editor1", "', $ config);    

Comments

Popular posts from this blog

c# - passing input text from view to contoller with FacebookContext using Facebook app -

ios - Does Core Data autoupdate a many to many relationship on saving -

Calling a C++ function from C# by passing a string with variable size to it -