Last active
December 14, 2015 18:59
-
-
Save opi/5133233 to your computer and use it in GitHub Desktop.
theme_field
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 _node_view_static_field($field_name, $title, $markup, $weight = 0) { | |
return array( | |
'#theme' => "field", | |
'#weight' => $weight, | |
'#title' => $title, | |
'#access' => TRUE, | |
'#label_display' => "inline", | |
'#view_mode' => "full", | |
'#language' => "und", | |
'#field_name' => $field_name, | |
'#field_type' => "text", | |
'#field_translatable' => 0, | |
'#entity_type' => 'node', | |
'#bundle' => BUNDLE, | |
'#formatter' => "text_default", | |
'#items' => array(0 => array('#markup' => $markup)), | |
0 => array('#markup' => $markup), | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment