poezio/plugins/test.py
mathieui 9885203c67 Update the plugins to use the PluginAPI
Also:
- Add get_conversation_messages() to PluginAPI
- Make plugins_autoload colon-separated instead of space-separated
    (for consistency)
- Replace a JID() with a safeJID() in the uptime plugin
2013-03-08 22:53:35 +01:00

22 lines
874 B
Python

from plugin import BasePlugin
import tabs
class Plugin(BasePlugin):
def init(self):
self.api.add_command('plugintest', self.command_plugintest, 'Test command')
self.api.add_tab_command(tabs.MucTab, 'plugintest', self.command_tab_plugintest, 'Test command')
self.api.add_sleek_event_handler('message', self.on_message)
self.api.information("Plugin loaded")
def cleanup(self):
self.api.information("Plugin unloaded")
def on_message(self, message):
self.api.information("Test plugin received message: {}".format(message))
def command_tab_plugintest(self, args):
self.api.information("Command for MucTabs! With args {}".format(args))
self.api.del_tab_command(tabs.MucTab, 'plugintest')
def command_plugintest(self, args):
self.api.information("Command! With args {}".format(args))