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

Add some variables for the project browse block theme.

Parameters

$variables:

File

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

Code

function template_preprocess_installer_browser_block(&$variables) {
  // Add the title and content variables.
  $variables['title'] = $variables['element']['#title'];
  $variables['content'] = $variables['element']['#content'];
}