function tmgmt_ui_theme in Translation Management Tool 7
Implements hook_theme().
File
- ui/
tmgmt_ui.module, line 124 - Common Translation managment UI.
Code
function tmgmt_ui_theme() {
return array(
'tmgmt_ui_translator_overview_item' => array(
// We also have the entity_type here because we are still populating the
// defaults via the entity api so we just need to add the description.
'variables' => array(
'label' => NULL,
'entity_type' => NULL,
'url' => FALSE,
'name' => FALSE,
'description' => FALSE,
),
'file' => 'includes/tmgmt_ui.theme.inc',
),
'tmgmt_ui_translator_overview_form' => array(
'render element' => 'form',
'file' => 'includes/tmgmt_ui.theme.inc',
),
'tmgmt_ui_translator_review_form' => array(
'render element' => 'element',
'file' => 'includes/tmgmt_ui.theme.inc',
),
'tmgmt_ui_translator_review_form_element' => array(
'render element' => 'element',
'file' => 'includes/tmgmt_ui.theme.inc',
),
'tmgmt_ui_translator_review_form_element_status' => array(
'render element' => 'status',
'file' => 'includes/tmgmt_ui.theme.inc',
),
'tmgmt_ui_translation_language_status_single' => array(
'file' => 'includes/tmgmt_ui.theme.inc',
'variables' => array(
'translation_status' => NULL,
'job_item' => NULL,
),
),
);
}