Guest User

Untitled

a guest
Jul 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. {{ page.footer }}
  2.  
  3. function template_preprocess_region(&$variables) {
  4. if ($variables['region'] == 'footer') {
  5. $variables['content'] = 1;
  6. }
  7. }
  8.  
  9. /**
  10. * Implements hook_preprocess_page() for page.html.twig.
  11. */
  12. function hook_preprocess_page(array &$variables) {
  13. $variables['page']['footer'] = [ # Specify the region name
  14. '#theme_wrappers' => ['region'],
  15. '#region' => 'footer', # Specify the region name
  16. 'phantom_block' => [
  17. '#markup' => ' ',
  18. '#weight' => "-100",
  19. ],
  20. ];
  21. }
Add Comment
Please, Sign In to add comment