theme_chatroom_chat

Definition

theme_chatroom_chat($chat)
contributions/modules/chatroom/chatroom.module, line 1160

Description

Get HTML for chat.

Related topics

Namesort iconDescription
Themeable functionsFunctions that display HTML, and which can be customized by themes.

Code

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;
}