2019-01-13 06:47:18 +00:00
|
|
|
<?php
|
|
|
|
|
2019-01-22 05:48:06 +00:00
|
|
|
use \Drupal\block\Entity\Block;
|
2019-01-13 06:47:18 +00:00
|
|
|
|
|
|
|
/**
|
2019-01-22 05:48:06 +00:00
|
|
|
* Implements hook_preprocess_region__footer().
|
2019-01-13 06:47:18 +00:00
|
|
|
*/
|
2019-01-22 05:48:06 +00:00
|
|
|
function agarica_preprocess_region__footer(&$variables) {
|
|
|
|
$block = Block::load('languageswitcher');
|
|
|
|
$block_content = \Drupal::entityTypeManager()
|
|
|
|
->getViewBuilder('block')
|
|
|
|
->view($block);
|
|
|
|
$variables['language_switcher'] = $block_content;
|
2019-01-13 06:47:18 +00:00
|
|
|
}
|