45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* @file
|
|
* materio_user_profiles.strongarm.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_strongarm().
|
|
*/
|
|
function materio_user_profiles_strongarm() {
|
|
$export = array();
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'field_bundle_settings_profile2__adherent';
|
|
$strongarm->value = array(
|
|
'view_modes' => array(),
|
|
'extra_fields' => array(
|
|
'form' => array(
|
|
'redirect' => array(
|
|
'weight' => '14',
|
|
),
|
|
),
|
|
'display' => array(),
|
|
),
|
|
);
|
|
$export['field_bundle_settings_profile2__adherent'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'field_bundle_settings_profile2__contact_operationnel';
|
|
$strongarm->value = array(
|
|
'view_modes' => array(),
|
|
'extra_fields' => array(
|
|
'form' => array(),
|
|
'display' => array(),
|
|
),
|
|
);
|
|
$export['field_bundle_settings_profile2__contact_operationnel'] = $strongarm;
|
|
|
|
return $export;
|
|
}
|