You are here

function translation_overview_theme in Translation Overview 6.2

Same name and namespace in other branches
  1. 6 translation_overview.module \translation_overview_theme()

Implementation of hook_theme().

File

./translation_overview.module, line 25

Code

function translation_overview_theme() {
  return array(
    'translation_overview_translation_link' => array(
      'arguments' => array(
        'state' => NULL,
        'link' => array(),
        'properties' => array(),
      ),
    ),
    'translation_overview_node_form' => array(
      'arguments' => array(
        'form' => array(),
      ),
      'file' => 'translation_overview.pages.inc',
    ),
  );
}