Skip to content

Instantly share code, notes, and snippets.

@steffenr
Last active December 23, 2015 08:49
Show Gist options
  • Save steffenr/6610501 to your computer and use it in GitHub Desktop.
Save steffenr/6610501 to your computer and use it in GitHub Desktop.
Get number of Organic Group Members. https://drupal.org/project/og
<?php
$query = db_select("og_membership", "ogm");
$query->fields("ogm", array('etid'));
$query->condition("ogm.gid", $og_context['gid']);
$query->condition("ogm.entity_type", 'user');
$result = $query->execute();
$og_member_count = $result->rowCount();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment