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 634B

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