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.

__init__.py 529B

123456789101112131415161718
  1. from lodel.context import LodelContext
  2. LodelContext.expose_modules(globals(), {
  3. 'lodel.validator.validator': ['Validator']})
  4. __plugin_name__ = 'filesystem_session'
  5. __version__ = [0,0,1]
  6. __plugin_type__ = 'session_handler'
  7. __loader__ = 'main.py'
  8. __confspec__ = "confspec.py"
  9. __author__ = "Lodel2 dev team"
  10. __fullname__ = "FileSystem Session Store Plugin"
  11. ## @brief This methods allow plugin writter to write some checks
  12. #
  13. # @return True if checks are OK else returns a string with a reason
  14. def _activate():
  15. return True