Michael,
I went to glFusion and asked about wrappers on their forum. This is the answer I got:
You can wrap a page, or script, outside of glFusion by calling the following code in a PHP page:
PHP Formatted Code
require_once('path/to/glfusion/public_html/lib-common.php');
$ret = COM_siteHeader();
$ret .= "whatever (x)HTML content you want to wrap goes here";
$ret .= COM_siteFooter();
echo $ret;
Basically you wrap your content inside the COM_siteHeader and COM_siteFooter functions. Note that when you do this, you no longer need to send HTML head info from the other script or page, as that info is generated by the COM functions.
I caqn only imagine the mess that I would create loading your script into glFusion.
Regards,
Paul
_________________ When you sup with the devil, bring a long spoon.
|