You are here

function custom_pub_off_action_submit in Custom Publishing Options 6

Same name and namespace in other branches
  1. 7 custom_pub.module \custom_pub_off_action_submit()

Implements a configurable action form submit callback.

File

./custom_pub.module, line 569
Adds the ability to add Custom publishing options to the node Add/Edit form.

Code

function custom_pub_off_action_submit($form, $form_state) {
  return array(
    'types' => $form_state['values']['types'],
  );
}