Not sure what I'm missing, but probably something really stupid.
I've setup a callback in a page node. I'm adding an extra variable like this:
And in the page node html I'm using
However, if I dump globals in a sidebar or something, I can clearly see
I've setup a callback in a page node. I'm adding an extra variable like this:
PHP:
$params = ["test" => "asd"]
$reply->setPageParams($params, true);
HTML:
{$test} // no output
{{dump($test)}} // null
{{dump($__globals)}} // null
"test" => "asd"
is being set properly. Anyone any idea what I'm missing?