You are here

function commons_follow_node_flag_default_flags_alter in Drupal Commons 7.3

Implements hook_flag_default_flags_alter().

File

modules/commons/commons_follow/commons_follow_node/commons_follow_node.features.inc, line 56
commons_follow_node.features.inc

Code

function commons_follow_node_flag_default_flags_alter(&$flags) {

  // Enable the default email_node flag provided by Message Subscribe Email.
  if (!empty($flags['email_node'])) {
    $flags['email_node']['status'] = TRUE;
  }
}