$output
$output :
The output generated during the page's render() method
This is the standard response implementation. It will actually execute helper actions that were setup during process and will tell the controlling component to render the response to the client.
setPage(\Dewdrop\Admin\Page\PageAbstract $page) : $this
Set the page object generating the response so it can be interacted with during testing.
\Dewdrop\Admin\Page\PageAbstract | $page |
getPage() : \Dewdrop\Admin\Page\PageAbstract
Get the dispatched page object (usually only for testing)
setHelper(\Dewdrop\Admin\ResponseHelper\Standard $helper) : $this
Set the response helper associated with this response.
\Dewdrop\Admin\ResponseHelper\Standard | $helper |
getHelper() : \Dewdrop\Admin\ResponseHelper\Standard
Get the response helper. If one hasn't been set (process wasn't run, we return a new instance of the page's process helper to make testing easier.
render() : \Dewdrop\Admin\Response
Render the output generated by the page
executeQueuedActions() : \Dewdrop\Admin\Response
Execute the queued helper actions.