function user_element_info

7.x user.module user_element_info()

Implements hook_element_info().

File

drupal-7.x/modules/user/user.module, line 978
Enables the user registration and login system.

Code

function user_element_info() {
  $types['user_profile_category'] = array(
    '#theme_wrappers' => array('user_profile_category'),
  );
  $types['user_profile_item'] = array(
    '#theme' => 'user_profile_item',
  );
  return $types;
}