asprin
Active member
I've the following in the controller:
And inside myTemplate.html is the following:
This prints out the following:
whereas the expectation is:
What am I missing here?
PHP:
$viewParams = [
'href' => $this->buildLink('fantasy/fc-events', ['fmode'=>'abc', 'fstatus'=>'def'])
];
return $this->view('AFC:EventManagement', 'myTemplate', $viewParams);
And inside myTemplate.html is the following:
HTML:
{{$href}}
This prints out the following:
/xen/index.php?fantasy/fc-events/
whereas the expectation is:
/xen/index.php?fantasy/fc-events/&fmode=abc&fstatus=def
What am I missing here?