function l10n_update_theme in Localization update 7
Same name and namespace in other branches
- 6 l10n_update.module \l10n_update_theme()
- 7.2 l10n_update.module \l10n_update_theme()
Implements hook_theme().
File
- ./
l10n_update.module, line 424 - Download translations from remote localization server.
Code
function l10n_update_theme() {
return array(
'l10n_update_project_status' => array(
'variables' => array(
'projects' => NULL,
'languages' => NULL,
'history' => NULL,
'available' => NULL,
'updates' => NULL,
),
'file' => 'l10n_update.admin.inc',
),
'l10n_update_single_project_wrapper' => array(
'project' => array(
'project' => NULL,
'project_status' => NULL,
'languages' => NULL,
'history' => NULL,
'updates' => NULL,
),
'file' => 'l10n_update.admin.inc',
),
'l10n_update_single_project_status' => array(
'variables' => array(
'project' => NULL,
'server' => NULL,
'status' => NULL,
),
'file' => 'l10n_update.admin.inc',
),
'l10n_update_current_release' => array(
'variables' => array(
'language' => NULL,
'release' => NULL,
'status' => NULL,
),
'file' => 'l10n_update.admin.inc',
),
'l10n_update_available_release' => array(
'variables' => array(
'release' => NULL,
),
'file' => 'l10n_update.admin.inc',
),
'l10n_update_version_status' => array(
'variables' => array(
'status' => NULL,
'type' => NULL,
),
'file' => 'l10n_update.admin.inc',
),
);
}