rename hooks to use "ac_" (account) and "dc_" (global)

This commit is contained in:
holger krekel
2020-03-29 07:34:48 +02:00
parent 7e1470ea46
commit ca88c5b41c
11 changed files with 67 additions and 67 deletions

View File

@@ -6,7 +6,7 @@ from deltachat import account_hookimpl, run_cmdline
class GroupTrackingPlugin:
@account_hookimpl
def process_incoming_message(self, message):
def ac_incoming_message(self, message):
print("process_incoming message", message)
if message.text.strip() == "/quit":
message.account.shutdown()
@@ -18,18 +18,18 @@ class GroupTrackingPlugin:
message.chat.send_text("echoing from {}:\n{}".format(addr, text))
@account_hookimpl
def configure_completed(self, success):
print("*** configure_completed:", success)
def ac_configure_completed(self, success):
print("*** ac_configure_completed:", success)
@account_hookimpl
def member_added(self, chat, contact):
print("*** member_added", contact.addr, "from", chat)
def ac_member_added(self, chat, contact):
print("*** ac_member_added", contact.addr, "from", chat)
for member in chat.get_contacts():
print("chat member: {}".format(member.addr))
@account_hookimpl
def member_removed(self, chat, contact):
print("*** member_removed", contact.addr, "from", chat)
def ac_member_removed(self, chat, contact):
print("*** ac_member_removed", contact.addr, "from", chat)
def main(argv=None):