Single pages, parameters, and getting at them from blocks within the single page.
Permalink 1 user found helpfuleg.
For:www.www.mydomain.com/path/to/singlepage/p1/p2/p3/p4...
The single page controller view function is
function view($p1,$p2,$p3,$p4){ ... }
This is all working nicely as a single page, but I also want to code some new types of block, which when added to areas on the single page, will adapt their behaviour based on the same parameters (P1...P4). The intent is to provide some later flexibility on how the single page presents the legacy content without having to edit code in the single page, and also to allow the same blocks to be used elsewhere on the site (though without the adaptive behaviour they would have on the single page).
I have tried putting a similar 'function view($p1,$p2,$p3,$p4)' in the the block controller, but it is obviously not receiving the parameters.
The hack solution would be to grab the original path and slice it up, as C5 does in the core dispatcher & controller, but...
Is there any clean way to get at these parameters, as already extracted by C5, from a block within a single page?
This gets the current request task and parameters of the single-page-controller from inside a block-view of that single page:
Your solution certainly looks cleaner than hacking the path on '/', so when I eventually get round to revisiting this I will give it a try.
My 2 cents: in addition to getControllerParameters(), you can also use getvar() method to access variables my names. Sof if in a page controller you have
function view($p1=null, $p2=null) { $this->set('myvar1', $p1); $this->set('myvar2', $p2); }
then you can do the following in a block:
Just looking for How we can edit(drag and drop blocks) a page having parameters.
For Example
Public function view($p1,$p2)
{
}
For me it is returning an error, missing one parameter when I click edit (+) button. I am new to this platform so a rapid response will be appreciated.
Thank you
In v8 blocks on regular pages can handle path segments and interoperate via path segments. Have a look at the way the page list block interacts with topics and date navigation in the blog example content installed with Elemental.
1) Tried to get the current single-page-controller from inside a block-view or block-controller like this:
2) Tried to use the Request-Object directly from inside a block-controller like this: