REDROOM
PHP 8.2.30
Path:
Logout
Edit File
Size: 1.05 KB
Close
/opt/cloudlinux/venv/lib/python3.11/site-packages/lvestats/core/plugin_context.py
Text
Base64
# coding=utf-8 # # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT from lvestats.lib import config as lvestats_config, dbengine __author__ = 'shaman' class PluginContext(object): def __init__(self, config): self.config = config self.db_engine = dbengine.make_db_engine(config, debug=False) self._cache = {} def get_instance(self, plugin_class): if plugin_class in self._cache: return self._cache[plugin_class] plugin = plugin_class() if hasattr(plugin, 'set_config'): plugin_config = lvestats_config.read_plugin_config(self.config, plugin=plugin_class.__name__) plugin.set_config(plugin_config) if hasattr(plugin, 'set_db_engine') and self.db_engine: plugin.set_db_engine(self.db_engine) self._cache[plugin_class] = plugin return plugin def recover_db(self): dbengine.recreate_db(self.db_engine)
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 1 × Files: 4
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
__pycache__
DIR
-
drwxr-xr-x
2026-03-05 22:36:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
plugin.py
1.99 KB
lrw-r--r--
2026-02-17 11:00:05
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
plugin_context.py
1.05 KB
lrw-r--r--
2026-02-17 11:00:05
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
plugin_loader.py
2.26 KB
lrw-r--r--
2026-02-17 11:00:05
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
__init__.py
218 B
lrw-r--r--
2026-02-17 11:00:05
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).