You are here

function entity_embed_page_build in Entity Embed 7.2

Same name and namespace in other branches
  1. 7 entity_embed.module \entity_embed_page_build()

Implements hook_page_build().

File

./entity_embed.module, line 595
Provides a CKEditor plugin and text filter for embedding and rendering entities.

Code

function entity_embed_page_build(&$page) {
  $page['page_bottom']['entity_embed']['#attached']['css'] = array(
    drupal_get_path('module', 'entity_embed') . '/css/entity_embed.css' => array(
      'every_page' => TRUE,
    ),
  );
}