1 installer.theme.inc template_preprocess_installer_browser_install(&$variables)

Add some variables for the projects install theme.

Parameters

$variables: An associative array containing:

  • current_task : the current task.

File

core/modules/installer/installer.theme.inc, line 14
Project Installer theme pages.

Code

function template_preprocess_installer_browser_install(&$variables) {
  module_load_include('inc', 'installer', 'installer.browser');
  // Add the themed list.
  $variables['task_list'] = installer_browser_installation_task_list($variables['current_task']);
}