Skip to content
Snippets Groups Projects
Commit 8980ffd0 authored by Chris Shantz's avatar Chris Shantz
Browse files

Merge branch '1.0.x' into prod/1.0.x

parents 037cac8a fdc003b8
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,9 @@ third_party_settings:
layout_id: uw_1_column
layout_settings:
label: ''
context_mapping: { }
layout_builder_styles_style: uw_lbs_contained_width
layout_builder_id: ''
components: { }
third_party_settings: { }
layout_builder_restrictions:
......
......@@ -14,6 +14,7 @@ use Drupal\Core\Path\CurrentPathStack;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\Routing\CurrentRouteMatch;
use Drupal\Core\Session\AccountProxyInterface;
use Drupal\Core\Url;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
......@@ -275,6 +276,9 @@ class SiteFooterBlock extends BlockBase implements ContainerFactoryPluginInterfa
}
}
// Add the home link to the site footer.
$site_footer['home_link'] = Url::fromRoute('<front>', [], ['absolute' => 'true'])->toString();
return [
'#theme' => 'uw_site_footer',
'#site_footer' => $site_footer,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment