• Reset your password
Home
OO PHP, Drupal, Symfony Developer and Architect
Tim Rabbetts

Main navigation

  • Home
  • Blog
  • Log in

Embed a view in Drupal 8 code

Breadcrumb

  • Home
  • blog
  • embed a view in drupal 8 code
  • Embed a view in Drupal 8 code
Tim
Rabbetts
By zarexogre | Mon, 14/09/2020
white, window, glass
drupal
views

Sometimes its useful to embed a view in some code in Drupal 8.  Its also useful to pass arguments.  

Within the view you need to setup a contextual filter whicyh alolwos you to pass in arguments.  most likely you will want the allow multiple option on.

Embed view

Then this code can be used to embed the view.

$show_nids = [123,456,444];

$showsView = views_embed_view('shows', 'block_1', implode($show_nids, '+'));