function l10n_update_theme in Localization update 7.2
Same name and namespace in other branches
- 6 l10n_update.module \l10n_update_theme()
- 7 l10n_update.module \l10n_update_theme()
Implements hook_theme().
File
- ./
l10n_update.module, line 162 - Download translations from remote localization server.
Code
function l10n_update_theme() {
return array(
'l10n_update_last_check' => array(
'variables' => array(
'last' => NULL,
),
'file' => 'l10n_update.admin.inc',
'template' => 'l10n_update-translation-last-check',
),
'l10n_update_update_info' => array(
'variables' => array(
'updates' => array(),
'not_found' => array(),
),
'file' => 'l10n_update.admin.inc',
'template' => 'l10n_update-translation-update-info',
),
);
}