🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 01:19:20 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
setoptconf
/
source
📍 /opt/cloudlinux/venv/lib/python3.11/site-packages/setoptconf/source
🔄 Refresh
✏️
Editing: mapping.py
Read Only
from ..config import Configuration from .base import Source __all__ = ("MappingSource",) class MappingSource(Source): def __init__(self, target): super(MappingSource, self).__init__() self.target = target def get_config(self, settings, manager=None, parent=None): for setting in settings: if setting.name in self.target: setting.value = self.target[setting.name] return Configuration(settings=settings, parent=parent)
💾 Save Changes
❌ Cancel