You are here

function redhen_relation_role_form_submit in RedHen CRM 7

Form API submit callback for the relation role form.

File

modules/redhen_relation/includes/redhen_relation_role.forms.inc, line 68

Code

function redhen_relation_role_form_submit(&$form, &$form_state) {
  $redhen_relation_role = entity_ui_form_submit_build_entity($form, $form_state);
  $redhen_relation_role
    ->save();
  $form_state['redirect'] = 'admin/structure/redhen/relation_roles';
}