function ctools_node_comment_wrapper_content_type_edit_form_submit

Submit handler for the comment wrapper settings form.

File

plugins/content_types/node_context/node_comment_wrapper.inc, line 110

Code

function ctools_node_comment_wrapper_content_type_edit_form_submit($form, &$form_state) {
    // Copy everything from our defaults.
    foreach (array_keys($form_state['plugin']['defaults']) as $key) {
        $form_state['conf'][$key] = $form_state['values'][$key];
    }
}