No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.py 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #-*- coding: utf-8 -*-
  2. ## @package lodel.plugins.dummy.main Plugin's loader module
  3. from lodel.context import LodelContext
  4. LodelContext.expose_modules(globals(), {
  5. 'lodel.plugin': ['LodelHook', 'CustomMethod'],
  6. 'lodel.settings' : 'settings'})
  7. ## @brief callback method using lodel's hook system
  8. # @param hook_name str
  9. # @param caller function : action to perform
  10. # @param payload : data to pass to the caller
  11. # @return payload
  12. @LodelHook('leapi_get_post')
  13. @LodelHook('leapi_update_pre')
  14. @LodelHook('leapi_update_post')
  15. @LodelHook('leapi_delete_pre')
  16. @LodelHook('leapi_delete_post')
  17. @LodelHook('leapi_insert_pre')
  18. @LodelHook('leapi_insert_post')
  19. def dummy_callback(hook_name, caller, payload):
  20. if settings.Settings.debug:
  21. print("\tHook %s\tcaller %s with %s" % (hook_name, caller, payload))
  22. return payload
  23. ## @brief instance method
  24. # This is an example of a basic plugin's custom method
  25. @CustomMethod('Object', 'dummy_method')
  26. def dummy_instance_method(self):
  27. print("Hello world !\
  28. I'm a custom method on an instance of class %s" % self.__class__)
  29. ## @brief instance method
  30. # This is an example of a basic plugin's custom method
  31. @CustomMethod('Object', 'dummy_class_method', CustomMethod.CLASS_METHOD)
  32. def dummy_instance_method(self):
  33. print("Hello world !\
  34. I'm a custom method on class %s" % self.__class__)