function drupalchat_footer in DrupalChat 6
Same name and namespace in other branches
- 6.2 drupalchat.module \drupalchat_footer()
Implementation of hook_footer().
File
- ./
drupalchat.module, line 38 - Module code for DrupalChat.
Code
function drupalchat_footer() {
global $user;
if (user_access('access drupalchat')) {
return theme('drupalchat');
}
}