<?php
function template_module_above()
{
global $context;
echo '<!-- start module data -->';
}
function template_include_data()
{
global $context;
// require_once $context['datafile'];
echo $context['datafile'];
}
function template_module_below()
{
global $context;
echo '<!-- stop module data -->';
}
?>