You are here

function commons_media_page_build in Drupal Commons 7.3

Implements hook_page_build().

File

modules/commons/commons_media/commons_media.module, line 174

Code

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