You are here

function translation_table_theme in Translation table 7

Same name and namespace in other branches
  1. 6 translation_table.module \translation_table_theme()

Implements hook_theme().

File

./translation_table.module, line 77
Translation table module

Code

function translation_table_theme() {
  return array(
    'translation_table' => array(
      'render element' => 'form',
      'file' => 'includes/theme.inc',
    ),
    'translation_table_filter' => array(
      'render element' => 'form',
      'file' => 'includes/theme.inc',
    ),
  );
}