function custom_pub_on_action_submit in Custom Publishing Options 6
Same name and namespace in other branches
- 7 custom_pub.module \custom_pub_on_action_submit()
Implements a configurable action form submit callback.
File
- ./
custom_pub.module, line 517 - Adds the ability to add Custom publishing options to the node Add/Edit form.
Code
function custom_pub_on_action_submit($form, $form_state) {
return array(
'types' => $form_state['values']['types'],
);
}