You are here

function l10n_update_theme in Localization update 6

Same name and namespace in other branches
  1. 7.2 l10n_update.module \l10n_update_theme()
  2. 7 l10n_update.module \l10n_update_theme()

Implementation of the hook_theme() registry.

File

./l10n_update.module, line 440
Download translations from remote localization server.

Code

function l10n_update_theme() {
  return array(
    'l10n_update_project_status' => array(
      'arguments' => array(
        'projects' => NULL,
        'languages' => NULL,
        'history' => NULL,
        'available' => NULL,
        'updates' => NULL,
      ),
      'file' => 'l10n_update.admin.inc',
    ),
    'l10n_update_release' => array(
      'arguments' => array(
        'tag' => NULL,
        'date' => NULL,
      ),
      'file' => 'l10n_update.admin.inc',
    ),
    'l10n_update_version_status' => array(
      'arguments' => array(
        'status' => NULL,
      ),
      'file' => 'l10n_update.admin.inc',
    ),
  );
}