I'm trying to get the rendered output of a page in a custom module.
In my custom Process module, I have the following:
public function ___execute() {
$page = $this->pages->get(1);
$page->of(true);
$op = $page->render();
return "Hello World";
}
An exception is thrown:
The...