og_ui_field_formatter_view
- drupal
Drupal 7 og_ui_field_formatter_view($entity_type, $entity, $field, $instance, $langcode, $items, $display)
Implements hook_field_formatter_view().
File
- sites/
all/ modules/ og/ og_ui/ og_ui.module, line 253 - Organic groups UI.
Code
function og_ui_field_formatter_view($entity_type, $entity, $field, $instance, $langcode, $items, $display) {
$element = array();
if ($field['field_name'] == OG_GROUP_FIELD && $links = og_ui_subscribe_link($entity_type, $entity)) {
$element[0] = $links;
}
return $element;
}

