You are here

civicrm_event_og_config_sample.rules_defaults.inc in CiviCRM Entity 7.2

File

features/civicrm_event_og_config_sample/civicrm_event_og_config_sample.rules_defaults.inc
View source
<?php

/**
 * @file
 * civicrm_event_og_config_sample.rules_defaults.inc
 */

/**
 * Implements hook_default_rules_configuration().
 */
function civicrm_event_og_config_sample_default_rules_configuration() {
  $items = array();
  $items['rules_add_participant_to_og_event'] = entity_import('rules_config', '{ "rules_add_participant_to_og_event" : {
      "LABEL" : "add participant to og event",
      "PLUGIN" : "reaction rule",
      "TAGS" : [ "CiviCRM" ],
      "REQUIRES" : [ "rules", "civicrm", "og" ],
      "ON" : [ "civicrm_participant_create" ],
      "DO" : [
        { "entity_query" : {
            "USING" : {
              "type" : "node",
              "property" : "field_civicrm_event",
              "value" : [ "civicrm-participant:event-id" ],
              "limit" : "1"
            },
            "PROVIDE" : { "entity_fetched" : { "event_og" : "OG for Event" } }
          }
        },
        { "civicrm_entity_action_load_create_user" : {
            "USING" : {
              "civicrm_contact" : [ "civicrm-participant:contact-id-contact" ],
              "is_active" : 1,
              "notify" : 1
            },
            "PROVIDE" : { "civicrm_user" : { "civicrm_user" : "Created\\/ Loaded Drupal User" } }
          }
        },
        { "og_subcribe_user" : { "user" : [ "civicrm-user" ], "group" : [ "event-og:0" ] } },
        { "drupal_message" : { "message" : "[civicrm-user:name] : [civicrm-user:uid] has been added to the OG for this Event [event-og:0:nid] event id is [civicrm-participant:event-id]\\r\\n\\r\\n" } }
      ]
    }
  }');
  $items['rules_create_event_og'] = entity_import('rules_config', '{ "rules_create_event_og" : {
      "LABEL" : "create-event-og",
      "PLUGIN" : "reaction rule",
      "TAGS" : [ "CiviCRM" ],
      "REQUIRES" : [ "rules", "civicrm" ],
      "ON" : [ "civicrm_event_create" ],
      "IF" : [
        { "data_is" : {
            "data" : [ "civicrm-event:event-type-id" ],
            "op" : "IN",
            "value" : { "value" : { "6" : "6" } }
          }
        }
      ],
      "DO" : [
        { "entity_create" : {
            "USING" : {
              "type" : "node",
              "param_type" : "og_event",
              "param_title" : [ "civicrm-event:title" ],
              "param_author" : [ "site:current-user" ]
            },
            "PROVIDE" : { "entity_created" : { "entity_created" : "Created entity" } }
          }
        },
        { "data_set" : {
            "data" : [ "entity-created:field_civicrm_event" ],
            "value" : [ "civicrm-event" ]
          }
        }
      ]
    }
  }');
  return $items;
}