*/ function irc_install() { register_hook('app_menu', 'addon/irc/irc.php', 'irc_app_menu'); } function irc_uninstall() { unregister_hook('app_menu', 'addon/irc/irc.php', 'irc_app_menu'); } function irc_app_menu($a,&$b) { $b['app_menu'][] = '
' . t('irc Chatroom') . '
'; } function irc_module() { return; } function irc_content(&$a) { $baseurl = $a->get_baseurl() . '/addon/irc'; $o = ''; // add the chatroom frame and some html $o .= <<< EOT

IRC chat

a beginner's guid to using IRC.

EOT; return $o; }