mgd_has_sitegroups

(Midgard 1.4.2 'Bifrost')

mgd_has_sitegroups -- Check if Midgard has sitegroups

Description

bool mgd_has_sitegroups (void)

Minimum version: Midgard 1.4 (Bifrost)

Check whether Midgard has sitegroups enabled.

Returns TRUE if Midgard has sitegroups enabled. Returns FALSE if Midgard does not have sitegroups enabled.


<?php
  if(mgd_has_sitegroups) {
    // do some sitegroup specific stuff.
  } else {
    // find a way to work without them.
  }
?>