Skip to content

Instantly share code, notes, and snippets.

@steinmb
Created May 19, 2014 13:54
Show Gist options
  • Save steinmb/ba5530f76f469974c753 to your computer and use it in GitHub Desktop.
Save steinmb/ba5530f76f469974c753 to your computer and use it in GitHub Desktop.
function uib_user_field_attach_view_alter(&$output, $context) {
$foobar = array(
'#theme' => 'field',
'#field_name' => 'field_uib_last_name',
'#field_type' => 'text',
'#title' => 'My very last name',
'#label_display' => 'inline',
'#bundle' => 'user',
array(
'#markup' => 'Foobar'
),
'#items' => array(array()),
);
$output['field_uib_last_name'] = $foobar;
dpm($output);
dpm($context, 'context');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment