Complex actions
...
$e->Actions->mapAction([
"aboutContact",
new \Cherrycake\Actions\ActionsActionHtml([
"moduleType" => ACTION_MODULE_TYPE_APP,
"moduleName" => "About",
"methodName" => "viewContact",
"request" => new \Cherrycake\Actions\Request([
"pathComponents" => [
new \Cherrycake\Actions\RequestPathComponent([
"type" => REQUEST_PATH_COMPONENT_TYPE_FIXED,
"string" => "about"
]),
new \Cherrycake\Actions\RequestPathComponent([
"type" => REQUEST_PATH_COMPONENT_TYPE_FIXED,
"string" => "contact"
])
]
])
])
]);
...Last updated