I think it would be better if Zoom “included” the template around the zoom code rather than reading it in the way it does. It would need to include two of course, one before the Zoom script and one after.
include(template_header);
// zoom generated html
echo "blah";
echo "blah";
// end of zoom generated html
include(template_footer);
The way it does it now, the template must be html, but if split into two and included it, it could contain more advanced script.
The layout for my site is defined by a series of PHP include files – which currently can not be used with Zoom. This means that the Zoom template is effectively hard coded and will need to be individually modified if there are any changes to my site. If Zoom included the template, then any changes to the site would be instantly reflected in the Zoom template.
I know this is a fairly large change, I guess I might get round to doing it myself..ha ha! Although many people may not require this, it ceratinly would make maintenance of my site much easier.
include(template_header);
// zoom generated html
echo "blah";
echo "blah";
// end of zoom generated html
include(template_footer);
The way it does it now, the template must be html, but if split into two and included it, it could contain more advanced script.
The layout for my site is defined by a series of PHP include files – which currently can not be used with Zoom. This means that the Zoom template is effectively hard coded and will need to be individually modified if there are any changes to my site. If Zoom included the template, then any changes to the site would be instantly reflected in the Zoom template.
I know this is a fairly large change, I guess I might get round to doing it myself..ha ha! Although many people may not require this, it ceratinly would make maintenance of my site much easier.
Comment