You are here

function entityform_notifications_enable in Entityform 7.2

Implements hook_enable().

Make sure Entityform is enabled from for entity_rules

File

entityform_notifications/entityform_notifications.install, line 13
Update functions for Entityform Notifications

Code

function entityform_notifications_enable() {
  $enabled_types = variable_get('entity_rules_types', explode(',', ENTITY_RULES_DEFAULT_TYPES));
  if (!in_array('entityform', $enabled_types, TRUE)) {
    $enabled_types[] = 'entityform';
    variable_set('entity_rules_types', $enabled_types);
  }
}