function content_translation_table_cck_form_submit in Translation table 6
Submit handler for the CCK translation form.
1 string reference to 'content_translation_table_cck_form_submit'
- content_translation_table_cck_form in modules/
content.translation_table.inc  - Menu callback; Admin form for CCK translation.
 
File
- modules/
content.translation_table.inc, line 149  - Translation table for the cck module.
 
Code
function content_translation_table_cck_form_submit($form, &$form_state) {
  switch ($form_state['clicked_button']['#id']) {
    case 'edit-filter':
    case 'edit-submit':
      $_SESSION['translation_table']['cck_scope'] = $form_state['values']['cck_scope'];
      $_SESSION['translation_table']['languages_selected'] = array_intersect_key(locale_language_list('name', TRUE), $form_state['values']['languages_selected']);
      break;
  }
}