This is the API docs for LemonStand V1, which has been discontinued. LemonStand is now a cloud based platform, available at lemonstand.com.
1-855-332-0555 sales@lemonstand.com Log In
01.
public
function
subscribeEvents()
02.
{
03.
Backend::
$events
->addEvent(
'cms:onAfterEvalPageContent'
,
$this
'after_eval_page_content'
);
04.
}
05.
06.
after_eval_page_content(
$page
$content
)
07.
08.
if
(
->url !==
'my-special-page'
09.
return
;
10.
11.
// Save the $content variable to some cache
12.