boxout.module in Boxout 8
Module for Boxout.
File
boxout.moduleView source
<?php
/**
* @file
* Module for Boxout.
*/
use Drupal\editor\Entity\Editor;
/**
* Implements hook_preprocess_page().
*/
function boxout_ckeditor_css_alter(array &$css, Editor $editor) {
$css[] = drupal_get_path('module', 'boxout') . '/css/boxout.css';
}
/**
* Implements hook_preprocess_page().
*/
function boxout_preprocess_page(&$variables) {
$variables['#attached']['library'][] = 'boxout/boxout';
}
Functions
Name | Description |
---|---|
boxout_ckeditor_css_alter | Implements hook_preprocess_page(). |
boxout_preprocess_page | Implements hook_preprocess_page(). |