function theme_translation_overview_status_img in Translation Overview 6
2 theme calls to theme_translation_overview_status_img()
- theme_translation_overview_translation_link in ./
translation_overview.module - translation_overview_help in ./
translation_overview.module - Implementation of hook_help().
File
- ./
translation_overview.module, line 127
Code
function theme_translation_overview_status_img($status, $alt_text) {
$img_path = drupal_get_path('module', 'translation_overview') . "/status_{$status}.png";
return theme('image', $img_path, $alt_text);
}