golden hour
/opt/cloudlinux/venv/lib/python3.11/site-packages/xray/adviser/advice_types
⬆️ Go Up
Upload
File/Folder
Size
Actions
__init__.py
588 B
Del
OK
__pycache__
-
Del
OK
cdn.py
1.04 KB
Del
OK
cpcss.py
1.12 KB
Del
OK
imgopt.py
1.09 KB
Del
OK
roc.py
1.07 KB
Del
OK
som.py
1002 B
Del
OK
wpos_base.py
6.88 KB
Del
OK
Edit: som.py
# -*- coding: utf-8 -*- # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2021 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT """ This module contains a class for applying SOM Advice """ import logging from xray import gettext as _ from .wpos_base import WPOSModuleApply logger = logging.getLogger('som_advice') class SOMAdvice(WPOSModuleApply): """Site Optimization advice""" short_description = _("Turn on AccelerateWP feature") detailed_description = _("To improve site performance, enable the AccelerateWP optimization feature. " "We recommend applying the advice if you see it frequently for " "the most valuable URLs of your site.") apply_advice_button_text = None upgrade_to_apply_button_text = None email_view_advice_text = None email_subject = None module_name = suite = 'accelerate_wp' is_premium_feature = False
Save