* Link: http://www.drudexsoftware.com * License: GPLv2 * Description: Places an ajax chatbox at the bottom of each page * Documentation: * This chatbox uses YShout 5 as core. */ class Chatbox extends Extension { public function onPageRequest(PageRequestEvent $event) { global $page, $user; // Adds header to enable chatbox $root = make_http(); $yPath = "$root/ext/chatbox/"; $page->add_html_header(" "); // loads the chatbox at the set location $html = "
"; $chatblock = new Block("Chatbox", $html, "main", 97); $page->add_block($chatblock); } } ?>