function ckeditor_indentblock_page_attachments in CKEditor IndentBlock 8
Implements hook_page_attachments().
Adds the ckeditor.indentblock.css with indentation css to each page.
File
- ./
ckeditor_indentblock.module, line 14 - Adds a hook for attaching a css file with indentation information to each page.
Code
function ckeditor_indentblock_page_attachments(array &$page) {
$page['#attached']['library'][] = 'ckeditor_indentblock/indentblock';
}