Created
May 19, 2014 13:54
-
-
Save steinmb/ba5530f76f469974c753 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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