function field_page_build

Implements hook_page_build().

Related topics

File

drupal/core/modules/field/field.module, line 986
Attach custom data fields to Drupal entities.

Code

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