function taxonomy_translation_table_data in Translation table 6
Same name and namespace in other branches
- 7 modules/taxonomy.translation_table.inc \taxonomy_translation_table_data()
Implementation of hook_translation_table_data().
File
- modules/
taxonomy.translation_table.inc, line 11 - Translation table for the taxonomy module.
Code
function taxonomy_translation_table_data() {
$items['taxonomy'] = array(
'title' => 'Taxonomy',
'description' => 'Edit taxonomy translations',
'form' => 'taxonomy_translation_table_taxonomy_form',
'file' => 'modules/taxonomy.translation_table.inc',
);
return $items;
}