function no_context_content_type_edit_form_submit

File

ctools_plugin_example/plugins/content_types/no_context_content_type.inc, line 110

Code

function no_context_content_type_edit_form_submit($form, &$form_state) {
    foreach (array(
        'item1',
        'item2',
    ) as $key) {
        $form_state['conf'][$key] = $form_state['values'][$key];
    }
}