-
Notifications
You must be signed in to change notification settings - Fork 0
/
shoutbox_body.php
35 lines (31 loc) · 1.33 KB
/
shoutbox_body.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
*
* @version $Id: shoutbox_body.php,v 1.4 11/02/2006 23:16 PastisD Exp $
* @copyright (c) 2006 PastisD
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
* Original author : Malach, http://www.phantasia-fr.com, 2006
*
*/
if($HTTP_COOKIE_VARS['shoutbox'] == "off")
{
$shout_size = 'width="0" height="0" border="0"';
$shoutbox_title = '<a href="shoutbox_max.php" title="' . $lang['All_Messages'] . '">' . $lang['title_minichat'] . '</a> - <a href="' . append_sid('shoutbox_view.'.$phpEx) . '?mode=show" class="mainmenu">' . $lang['sb_show'] . '</a>';
}
else
{
$shout_size = 'width="100%" height="' . $board_config['shoutbox_height'] . '" border="0"';
$shoutbox_title = '<a href="shoutbox_max.php" title="' . $lang['All_Messages'] . '" class="cattitle">' . $lang['title_minichat'] . '</a>';
}
$shoutbox_body = '<table width="' . $board_config['shoutbox_width'] . '" align="center" cellpadding="2" cellspacing="1" border="0" class="forumline">
<th class="cattitle" align="center" height="20">' . $shoutbox_title . '</th>
<tr>
<td align="center" valign="middle" rowspan="4">
<iframe bgcolor="#63456B" src="shoutbox.php" ' . $shout_size . '></iframe>
</td>
</tr>
</table>
<br />';
$template->assign_vars(array('SHOUTBOX_BODY' => $shoutbox_body));
?>