theme_chatroom_chat($chat)
contributions/modules/chatroom/chatroom.module, line 1160
Get HTML for chat.
| Name | Description |
|---|---|
| Themeable functions | Functions that display HTML, and which can be customized by themes. |
function theme_chatroom_chat($chat) {
$html = '<p>'. l(t('View old messages'), "chatrooms/archives/{$chat->ccid}") .'</p>';
$html .= '<div id="chatroom-container">';
$html .= theme('chatroom_chat_board');
$html .= theme('chatroom_chat_textentry');
$html .= '</div>';
return $html;
}