function content_translation_table_cck_form in Translation table 6
Menu callback; Admin form for CCK translation.
1 string reference to 'content_translation_table_cck_form'
- content_translation_table_data in modules/
content.translation_table.inc - Implementation of hook_translation_table_data().
File
- modules/
content.translation_table.inc, line 25 - Translation table for the cck module.
Code
function content_translation_table_cck_form(&$form_state) {
$languages_selected = isset($_SESSION['translation_table']['languages_selected']) ? $_SESSION['translation_table']['languages_selected'] : locale_language_list('name', FALSE);
$cck_scope = isset($_SESSION['translation_table']['cck_scope']) ? $_SESSION['translation_table']['cck_scope'] : 0;
$form['filter'] = content_translation_table_cck_filter($languages_selected, $cck_scope);
$form['filtered_form'] = content_translation_table_cck_filtered_form($languages_selected, $cck_scope);
$form['#submit'][] = 'content_translation_table_cck_form_submit';
$form['#submit'][] = 'translation_table_submit_translations';
return $form;
}