/home/techb158/l2hypotheques.com/wp-content/plugins/complianz-gdpr/settings/src/Settings
NameSizeModeActions
ColorPicker/-0755rm
CookieBannerPreview/-0755rm
Cookiedatabase/-0755rm
CookieScan/-0755rm
CreateDocuments/-0755rm
DataBreachReports/-0755rm
DataRequests/-0755rm
Debug/-0755rm
DocumentsMenu/-0755rm
Editor/-0755rm
Export/-0755rm
Fields/-0755rm
Finish/-0755rm
Inputs/-0755rm
InstallPlugin/-0755rm
Integrations/-0755rm
License/-0755rm
Multisite/-0755rm
PlaceholderPreview/-0755rm
PluginsPrivacyStatements/-0755rm
ProcessingAgreements/-0755rm
Processors/-0755rm
ProofOfConsent/-0755rm
RecordsOfConsent/-0755rm
SecurityMeasures/-0755rm
Support/-0755rm
ThirdParties/-0755rm
Translations/-0755rm
WcagContrastChecker/-0755rm
WebSiteScan/-0755rm
AreYouSureModal.js8010644editdlrm
BorderRadiusControl.js27060644editdlrm
BorderWidthControl.js23180644editdlrm
ButtonControl.js16270644editdlrm
ChangeStatus.js4990644editdlrm
CheckboxControl.js13960644editdlrm
DocumentControl.js45670644editdlrm
Help.js13730644editdlrm
Panel.js9280644editdlrm
Password.js13480644editdlrm
PluginsOverviewControl.js22460644editdlrm
Premium.js5430644editdlrm
Settings.js110840644editdlrm
SettingsGroup.js55370644editdlrm
Support.js15040644editdlrm
Edit: /home/techb158/l2hypotheques.com/wp-content/plugins/complianz-gdpr/settings/src/Settings/Help.js (1373B)
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("complianz.io") !==-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. */}
{/* nosemgrep: react-dangerouslysetinnerhtml */} {notice.url &&
{__("More info", "complianz-gdpr")}
}
} { notice.title && !notice.text &&

{notice.title}

} ); } export default Help