Ok -
I've got a "sidebar" template which I "include" in the send footer function in ubbt.inc.php
My ubbt_sidebarend.tmpl file:
code:
<? //UBBTREMARK
echo <<<UBBTPRINT
</td>
<td align="left" valign="top" width="2%"> </td>
<td align="right" valign="top" width="23%">
<!--Sidebar Content Starts Here-->
UBBTPRINT;
$palspath = "/home/measurection/htdocs/test";
include "{$palspath}/pals/languagepal.php";
include "{$palspath}/pals/configpal.php";
include "{$palspath}/pals/tablewrappers.tmpl";
include "{$palspath}/pals/announcementpal.php";
include "{$palspath}/pals/shoutboxpal.php";
include "{$palspath}/pals/hottopicpal.php";
include "{$palspath}/pals/morestuffpal.php";
echo <<<UBBTPRINT
<!--Sidebar Content Ends Here-->
</td>
</tr>
</table>
</body>
UBBTPRINT;
/* UBBTREMARK */ ?>
Maybe I should try calling the template from the send footer file to start the side bar....
then do the includes from the ubbt.inc.php file... then call another template to close it all up? <shrug>
Seems like it should be possible. I got the shoutbox to work.