/home/techb158/l2hypotheques.com/wp-content/plugins/really-simple-ssl/settings/src/Settings
NameSizeModeActions
AutoComplete/-0755rm
Captcha/-0755rm
DataTable/-0755rm
DynamicDataTable/-0755rm
EventLog/-0755rm
firewall/-0755rm
GeoBlockList/-0755rm
Host/-0755rm
LearningMode/-0755rm
License/-0755rm
LimitLoginAttempts/-0755rm
MixedContentScan/-0755rm
RiskConfiguration/-0755rm
TwoFA/-0755rm
Button.js15190644editdlrm
CheckboxControl.js40300644editdlrm
Field.js204220644editdlrm
FieldsData.js112560644editdlrm
FilterData.js5900644editdlrm
GroupFilter.js9880644editdlrm
Help.js15130644editdlrm
Notices.js7820644editdlrm
Password.js10090644editdlrm
PermissionsPolicy.js80940644editdlrm
PostDropDown.js29290644editdlrm
PremiumOverlay.js19590644editdlrm
RolesDropDown.js36910644editdlrm
SelectControl.js30720644editdlrm
Settings.js74380644editdlrm
SettingsGroup.js74000644editdlrm
Support.js19430644editdlrm
Edit: /home/techb158/l2hypotheques.com/wp-content/plugins/really-simple-ssl/settings/src/Settings/Help.js (1513B)
import Icon from "../utils/Icon"; import { __ } from '@wordpress/i18n'; import DOMPurify from "dompurify"; /** * Render a help notice in the sidebar */ const Help = (props) => { let notice = {...props.help}; if ( !notice.title ){ notice.title = notice.text; notice.text = false; } let openStatus = props.noticesExpanded ? 'open' : ''; //we can use notice.linked_field to create a visual link to the field. let target = notice.url && notice.url.indexOf("really-simple-ssl.com") !==-1 ? "_blank" : '_self'; return (
{ notice.title && notice.text &&
{notice.title} {/*some notices contain html, like for the htaccess notices. A title is required for those options, otherwise the text becomes the title. */}
{notice.url &&
{__("More info", "really-simple-ssl")}
}
} { notice.title && !notice.text &&

{notice.title}

}
); } export default Help