user_field_build_modes

Versions
7
user_field_build_modes($obj_type)

Implements hook_field_build_modes().

Code

modules/user/user.module, line 152

<?php
function user_field_build_modes($obj_type) {
  $modes = array();
  if ($obj_type == 'user') {
    $modes = array(
      'full' => t('User account'),
    );
  }
  return $modes;
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.