You are here

function faq_order_settings_choose_cat_form_submit in Frequently Asked Questions 6

Same name and namespace in other branches
  1. 8 faq.module \faq_order_settings_choose_cat_form_submit()
  2. 7.2 faq.admin.inc \faq_order_settings_choose_cat_form_submit()
  3. 7 faq.admin.inc \faq_order_settings_choose_cat_form_submit()

Function set the rebuild of the form in the FAQ Settings - Weight tab.

Parameters

$form: Array, containing the form structure.

&$form_state: The 'rebuild' key inside $form_state['rebuild'] structure, overrides the 'redirect' key: when it is set to TRUE, the form will be rebuilt from scratch and displayed on screen.

1 string reference to 'faq_order_settings_choose_cat_form_submit'
faq_order_settings_form in ./faq.admin.inc
Define the elements for the FAQ Settings page - order tab.

File

./faq.admin.inc, line 489
Administrative page callbacks for the faq module.

Code

function faq_order_settings_choose_cat_form_submit($form, &$form_state) {
  $form_state['rebuild'] = TRUE;
}