Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

fieldgroup_edit_group_submit

Definition

fieldgroup_edit_group_submit($form_id, &$form_values, $content_type, $action)
contributions/cck/fieldgroup.module, line 152

Code

<?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';
}
?>