function openatrium_features_revert_all in Open Atrium 7.2
Revert all features.
File
- ./
openatrium.install, line 101 - Perform actions to set up the site for this profile.
Code
function openatrium_features_revert_all() {
global $install_state;
drupal_set_time_limit(0);
features_revert(array(
'oa_core' => array(
'field_base',
),
'oa_sections' => array(
'field_base',
'field_instance',
),
'oa_users' => array(
'field_instance',
),
));
features_revert();
}