- og_get_node_groups in contributions/og/og.module
- og_handler_field_nodelink in contributions/og/og_views.inc
og_get_node_groups_result($nid)contributions/og/og.module, line 1293
<?php
function og_get_node_groups_result($nid) {
// We do not run db_rewrite_sql() here since we need to know about groups that the user cannot access as well (i.e. node edit).
$sql = "SELECT oga.group_nid, n.title FROM {node} n INNER JOIN {og_ancestry} oga ON n.nid = oga.group_nid WHERE oga.nid = %d";
return db_query($sql, $nid);
}
?>