ckeditor_theme()
Implements hook_theme().
File
- core/modules/ckeditor/ckeditor.module, line 45
- Provides integration with the CKEditor WYSIWYG editor.
Code
1 2 3 4 5 6 7 8 | function ckeditor_theme() { return array ( 'ckeditor_settings_toolbar' => array ( 'file' => 'ckeditor.admin.inc' , 'variables' => array ( 'editor' => NULL, 'plugins' => NULL), ), ); } |
Please login to continue.