http://xataface.com/documentation/tutorial/getting_started/dataface_actions
At the bottom of the page it says:
- Code: Select all
$template_name = $params['actions']['template'];
But that doesn't work in the 1.0-beta2. It should be "action" (singular, not plural):
- Code: Select all
$template_name = $params['action']['template'];
-Rob