civicrm_event_og_config_sample.module in CiviCRM Entity 7
File
features/civicrm_event_og_config_sample/civicrm_event_og_config_sample.module
View source
<?php
include_once 'civicrm_event_og_config_sample.features.inc';
function civicrm_event_og_config_sample_variable_info($options) {
if (!civicrm_initialize(TRUE)) {
return;
}
$options = array();
$variable['civicrm_event_og_config_sample_types'] = array(
'title' => t('Event types for which OGs should be created', array(), $options),
'type' => 'options',
'description' => 'Specify Event Types to be Synced with OG',
'options' => $options,
'default' => array(
1,
),
'token' => TRUE,
);
return $variable;
}