Same name in other branches
- 7.x-3.x quicktabs.admin.inc \quicktabs_remove_tab_submit()
Submit handler for the "Remove Tab" button.
1 string reference to 'quicktabs_remove_tab_submit'
Fichier
-
./
quicktabs.admin.inc, line 395
Code
function quicktabs_remove_tab_submit($form, &$form_state) {
// Get the tab delta for the clicked button.
$delta = $form_state['clicked_button']['#parents'][1];
$form_state['to_remove'] = $delta;
$form_state['rebuild'] = TRUE;
}