You are here

function translation_overview_theme in Translation Overview 6

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

Implementation of hook_theme().

File

./translation_overview.module, line 57

Code

function translation_overview_theme() {
  return array(
    'translation_overview_translation_link' => array(
      'arguments' => array(
        'status' => NULL,
        'path' => '',
        'options' => array(),
        'show_long' => FALSE,
      ),
    ),
    'translation_overview_status_img' => array(
      'arguments' => array(
        'status' => NULL,
        'alt_text' => '',
      ),
    ),
  );
}