materio-base-legacy/materio_user_profiles/materio_user_profiles.features.inc
bachy 4caa0c442b first import
Signed-off-by: bachy <git@g-u-i.net>
2013-01-30 18:30:33 +01:00

30 lines
689 B
PHP

<?php
/**
* @file
* materio_user_profiles.features.inc
*/
/**
* Implements hook_default_profile2_type().
*/
function materio_user_profiles_default_profile2_type() {
$items = array();
$items['adherent'] = entity_import('profile2_type', '{
"userCategory" : true,
"userView" : true,
"type" : "adherent",
"label" : "Member Profile",
"weight" : "0",
"data" : { "registration" : 0 }
}');
$items['contact_operationnel'] = entity_import('profile2_type', '{
"userCategory" : true,
"userView" : true,
"type" : "contact_operationnel",
"label" : "Contact Profile",
"weight" : "0",
"data" : { "registration" : 0 }
}');
return $items;
}