You are here

function node_translation_table_data in Translation table 6

Same name and namespace in other branches
  1. 7 modules/node.translation_table.inc \node_translation_table_data()

Implementation of hook_translation_table_data().

File

modules/node.translation_table.inc, line 11
Provide translation table functionality for the node module.

Code

function node_translation_table_data() {
  $items['nodetype'] = array(
    'title' => 'Content type',
    'description' => 'Edit content type translations',
    'form' => 'node_translation_table_nodetype_form',
    'file' => 'modules/node.translation_table.inc',
  );
  return $items;
}