function node_translation_table_data in Translation table 7
Same name and namespace in other branches
- 6 modules/node.translation_table.inc \node_translation_table_data()
Implements 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;
}