2011-09-24 20:26:31 +00:00
|
|
|
from plugin import BasePlugin
|
|
|
|
|
2011-09-23 15:43:01 +00:00
|
|
|
class Plugin(BasePlugin):
|
|
|
|
def init(self):
|
2011-09-24 20:26:31 +00:00
|
|
|
self.add_command('plugintest', self.command_plugintest, 'Test command')
|
|
|
|
self.add_event_handler('message', self.on_message)
|
2011-09-23 15:43:01 +00:00
|
|
|
self.core.information("Plugin loaded")
|
2011-10-01 21:48:42 +00:00
|
|
|
self.core.connect('enter', self.on_enter)
|
2011-09-23 15:43:01 +00:00
|
|
|
|
|
|
|
def cleanup(self):
|
|
|
|
self.core.information("Plugin unloaded")
|
|
|
|
|
2011-10-01 21:48:42 +00:00
|
|
|
def on_enter(self, line):
|
|
|
|
self.core.information('Text sent: {}'.format(line))
|
|
|
|
|
2011-09-23 15:43:01 +00:00
|
|
|
def on_message(self, message):
|
|
|
|
self.core.information("Test plugin received message: {}".format(message))
|
|
|
|
|
|
|
|
def command_plugintest(self, args):
|
|
|
|
self.core.information("Command! With args {}".format(args))
|