diff --git a/core/includes/install.inc b/core/includes/install.inc index 4a2b41bbbee733e60c1c83024e63fce0b19f9546..e9e11943b0ce7524997ed9e4987d9774f7c4ec23 100644 --- a/core/includes/install.inc +++ b/core/includes/install.inc @@ -111,6 +111,30 @@ function drupal_install_profile_distribution_name() { return isset($info['distribution']['name']) ? $info['distribution']['name'] : 'Drupal'; } +/** + * Loads the installation profile, extracting its defined version. + * + * @return string Distribution version defined in the profile's .info.yml file. + * Defaults to \Drupal::VERSION if no version is explicitly provided + * by the installation profile. + * + * @see install_profile_info() + */ +function drupal_install_profile_distribution_version() { + // During installation, the profile information is stored in the global + // installation state (it might not be saved anywhere yet). + if (drupal_installation_attempted()) { + global $install_state; + return isset($install_state['profile_info']['version']) ? $install_state['profile_info']['version'] : \Drupal::VERSION; + } + // At all other times, we load the profile via standard methods. + else { + $profile = drupal_get_profile(); + $info = system_get_info('module', $profile); + return $info['version']; + } +} + /** * Detects all supported databases that are compiled into PHP. * diff --git a/core/includes/theme.inc b/core/includes/theme.inc index a9a88265e33a1784e438f5b1db80763451013274..41c9e85e4d2f0152da723e55d330d16de8aaf1aa 100644 --- a/core/includes/theme.inc +++ b/core/includes/theme.inc @@ -1486,6 +1486,7 @@ function template_preprocess_install_page(&$variables) { // still in the process of being installed. $distribution_name = drupal_install_profile_distribution_name(); $variables['site_name'] = $distribution_name; + $variables['site_version'] = drupal_install_profile_distribution_version(); } /** diff --git a/core/themes/seven/css/theme/install-page.css b/core/themes/seven/css/theme/install-page.css index 3a2f217e16faad27091962f38932a89f48698b73..0ebeaacd0babde46f98b8b2fa0a66df3c8e5116b 100644 --- a/core/themes/seven/css/theme/install-page.css +++ b/core/themes/seven/css/theme/install-page.css @@ -36,6 +36,12 @@ word-break: break-word; } +.install-page .site-version { + vertical-align: super; + font-size: 0.5em; + color: #595959; +} + @media all and (max-width: 1010px) and (min-width: 48em) { .install-page .password-strength, .install-page .confirm-parent { diff --git a/core/themes/seven/templates/install-page.html.twig b/core/themes/seven/templates/install-page.html.twig index b501fb83b7ecdae33e0b7c2df2cf184faedac1f5..2ada24d79c838a1a5c981835283cb759278edeec 100644 --- a/core/themes/seven/templates/install-page.html.twig +++ b/core/themes/seven/templates/install-page.html.twig @@ -13,7 +13,12 @@ <header role="banner"> {% if site_name %} - <h1 class="page-title">{{ site_name }}</h1> + <h1 class="page-title"> + {{ site_name }} + {% if site_version %} + <span class="site-version">{{ site_version }}</span> + {% endif %} + </h1> {% endif %} </header>