domain_enabling

Definition

domain_enabling($set = NULL)
domain.module, line 942

Description

Writes the default grants when the module is first enabled.

Code

function domain_enabling($set = NULL) {
  static $enabling = FALSE;
  if ($set !== NULL) {
    $enabling = $set;
  }
  return $enabling;
}