Calling all Drupal developers!
Help us get this on the first page of Digg. DIGG NOW!
Help us get this on the first page of Digg. DIGG NOW!
fieldgroup_edit_group_submit($form_id, &$form_values, $content_type, $action)
contributions/cck/fieldgroup.module, line 152
<?php
function fieldgroup_edit_group_submit($form_id, &$form_values, $content_type, $action) {
$groups = fieldgroup_groups($content_type['type']);
$group = $groups[$form_values['group_name']];
fieldgroup_save_group($content_type['type'], $form_values);
cache_clear_all('fieldgroup_data', 'cache_content');
return 'admin/content/types/'. $content_type['url_str'] .'/fields';
}
?>