From 848e2a8a634cd06699f4591f023b0227bfbab887 Mon Sep 17 00:00:00 2001 From: Anybody Date: Wed, 14 Sep 2022 17:00:49 +0000 Subject: [PATCH] Issue #3309673: (How to) overwrite drupal_view() views settings or provide parameters? --- docs/cheat-sheet.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/cheat-sheet.md b/docs/cheat-sheet.md index 4615314..3984027 100644 --- a/docs/cheat-sheet.md +++ b/docs/cheat-sheet.md @@ -4,6 +4,10 @@ ```twig {{ drupal_view('who_s_new', 'block_1') }} ``` +Specify additional parameters which map to contextual filters you have configured in your view: +```twig +{{ drupal_view('who_s_new', 'block_1', arg_1, arg_2, arg_3) }} +``` ## Drupal View Result ```twig