You are here

function rules_admin_form_add_submit in Rules 6

2 string references to 'rules_admin_form_add_submit'
rules_admin_form_add_action in rules_admin/rules_admin.rule_forms.inc
Returns the form for the first action add page
rules_admin_form_add_condition in rules_admin/rules_admin.rule_forms.inc
Returns the form for the first condition add page

File

rules_admin/rules_admin.rule_forms.inc, line 384

Code

function rules_admin_form_add_submit($form, &$form_state) {
  $form_state['element']['#name'] = $form_state['values']['name'];
  $form_state['step']++;
  rules_init_element_info($form_state['element']);
}