theme_chatroom_chat_kicked_user($chat)
contributions/modules/chatroom/chatroom.module, line 1110
Get HTML for kick message.
| Name | Description |
|---|---|
| Themeable functions | Functions that display HTML, and which can be customized by themes. |
function theme_chatroom_chat_kicked_user($chat) {
$msg = $chat->kicked_out_message ? $chat->kicked_out_message : t('You have been kicked out of %chat for misbehaving.', array('%chat' => $chat->chatname));
return '<div id="chatroom-kicked-msg">'. $msg .'</div>';
}