'User Entity Test', 'page callback' => 'userentitytest_page', 'access callback' => TRUE, ); return $items; } /** * Implements hook_entity_info_alter(). */ function userentitytest_entity_info_alter(&$entity_info) { $entity_info['user']['bundles']['userentitytest'] = array( 'label' => t('User Entity Test'), 'admin' => array( 'path' => 'admin/config/people/accounts/userentitytest', ) ); } /** * */ function userentitytest_page() { return 'foobar'; }