You are here

function node_clone_action_clone_submit in Node clone 8

Action form submit.

File

./node_clone.module, line 236
Allow users to make a copy of an item of content (a node) and then edit that copy.

Code

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