function tmgmt_theme in Translation Management Tool 8
Implements hook_theme().
File
- ./
tmgmt.module, line 549 - Main module file for the Translation Management module.
Code
function tmgmt_theme() {
return [
'tmgmt_data_items_form' => [
'render element' => 'element',
],
'tmgmt_progress_bar' => [
'variables' => [
'title' => NULL,
'entity' => NULL,
'total' => 0,
'parts' => [],
],
],
'tmgmt_legend' => [
'variables' => [
'title' => NULL,
'items' => NULL,
],
],
];
}