The problem is getting output on the front end of the site.
In the page I want to display the data, I have
Code: Select all
{cms_module module=MyModule}
I have the file:
action.default.php
I've put in
Code: Select all
echo "Hello World"; // nothing!
Code: Select all
function DoAction ($action, $id, $params, $returnid = -1) {
echo "Hello World from DoAction"; // still nothing!
}
Am I missing something?