function commons_trusted_contacts_default_og_membership_type in Drupal Commons 7.3
Implements hook_default_og_membership_type().
File
- modules/
commons/ commons_trusted_contacts/ commons_trusted_contacts.features.inc, line 89 - commons_trusted_contacts.features.inc
Code
function commons_trusted_contacts_default_og_membership_type() {
$items = array();
$items['trusted_contacts'] = entity_import('og_membership_type', '{
"name" : "trusted_contacts",
"description" : "Trusted Contacts",
"language" : "",
"rdf_mapping" : []
}');
return $items;
}