You are here

function taxonomy_translation_table_data in Translation table 7

Same name and namespace in other branches
  1. 6 modules/taxonomy.translation_table.inc \taxonomy_translation_table_data()

Implements 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;
}