Tuesday, October 23, 2012
group_audience[LANGUAGE_NONE][0]['gid'])) {
$group_nid = hnog_get_nid_for_gid($entity->group_audience[LANGUAGE_NONE][0]['gid']);
$group_node = node_load($group_nid);
$image = NULL;
if (!empty($group_node->field_og_logo[LANGUAGE_NONE][0]['uri'])) {
$image = theme('image_style',
array(
'path' => $group_node->field_og_logo[LANGUAGE_NONE][0]['uri'],
'style_name' => 'icon_tiny',
));
}
else {
$image = theme('image',
array(
'path' => drupal_get_path('theme', 'hntheme_custom') . '/images/icon-group-gray-16.png',
));
}
if (!empty($image)) {
return l($image . '' . check_plain($group_node->title) . '', 'node/' . $group_node->nid, array('html' => TRUE));
}
}
?>