1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00

Remove {e_PLUGIN}/chatbox_menu/chat_template.php

Since PR #3631 merge this file is not used by chat.php to render chat posts.
This commit is contained in:
Arun S. Sekher 2019-02-03 18:41:35 +04:00
parent f934976ac5
commit fbe2404607

View File

@ -1,36 +0,0 @@
<?php
if (!defined('e107_INIT')) { exit; }
// ##### CHAT TABLE -----------------------------------------------------------------------------
if(empty($CHAT_TABLE_START))
{
$CHAT_TABLE_START = "
<br /><table class='table table-striped' style='width:100%'>";
}
if(empty($CHAT_TABLE))
{
//TODO review bullet
$CHAT_TABLE = "<tr><td>
<div class='spacer'>
<div class='{CHAT_TABLE_FLAG}'>
<b>{CHAT_TABLE_NICK}</b> ".CHATBOX_L22." {CHAT_TABLE_DATESTAMP}
<br />
<div class='defaulttext'><i>{CHAT_TABLE_MESSAGE}</i></div>
</div>
</div></td></tr>";
}
if(empty($CHAT_TABLE_END))
{
$CHAT_TABLE_END = "
</table>";
}