/ Published in: PHP
Expand |
Embed | Plain Text
<?php // $Id: bot_drupal.module,v 1.2 2006/11/13 03:25:57 morbus Exp $ /** * Implementation of hook_menu(). */ function bot_test_menu($may_cache) { if ($may_cache) { 'path' => "bot", 'type' => MENU_CALLBACK, 'callback' => 'bot_test_page', 'access' => 'administer site' ); } return $items; } function bot_test_irc_msg_channel($data) { $mynick = variable_get('bot_nickname'); // log it $query = "INSERT INTO {bot_log} (type, timestamp, channel, nick, message) VALUES ('%s', %d, '%s', '%s', '%s')"; bot_message($data->channel, "Thanks, ".$data->nick); } function bot_test_page($page = 1) { $perpage = "50"; $from = ($page-1) * $perpage; $result = db_query_range('SELECT * FROM {bot_log} ORDER BY id DESC', $from, $perpage); while ($current = db_fetch_object($result)) { $current->channel, format_date($current->timestamp,"small"), $current->nick, $current->message ); } return theme_table($header, $rows); }
You need to login to post a comment.
