function user_page_build

Implements hook_page_build().

File

drupal/core/modules/user/user.module, line 122
Enables the user registration and login system.

Code

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