function ckeditor_page_build in CKEditor for WYSIWYG Module 8
Implements hook_page_build().
File
- ./
ckeditor.module, line 81 - Provides integration with the CKEditor WYSIWYG editor.
Code
function ckeditor_page_build(&$page) {
// Add our CSS file that adds common needed classes, such as align-left,
// align-right, underline, indent, etc.
$page['#attached']['library'][] = array(
'ckeditor',
'drupal.ckeditor.css',
);
}