function tmgmt_ui_source_overview_form in Translation Management Tool 7
Form callback for the source overview form.
1 string reference to 'tmgmt_ui_source_overview_form'
File
- ui/
tmgmt_ui.module, line 230 - Common Translation managment UI.
Code
function tmgmt_ui_source_overview_form($form, &$form_state, $plugin, $item_type = NULL) {
$controller = tmgmt_source_ui_controller($plugin);
$form_state['plugin'] = $plugin;
$form_state['item_type'] = $item_type;
return $controller
->overviewForm($form, $form_state, $item_type);
}