| Server IP : 146.59.209.152 / Your IP : 216.73.216.46 Web Server : Apache System : Linux webm005.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : infrafs ( 43850) PHP Version : 8.2.29 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/infrafs/INFRABIKEUS/wp-content/plugins/really-simple-ssl/settings/src/Settings/ |
Upload File : |
import { __ } from '@wordpress/i18n';
import Hyperlink from "../utils/Hyperlink";
import * as rsssl_api from "../utils/api";
import useFields from "./FieldsData";
/**
* Render a help notice in the sidebar
*/
const Button = (props) => {
const {addHelpNotice} = useFields();
const onClickHandler = (action) => {
let data = {};
rsssl_api.doAction(action, data).then( ( response ) => {
let label = response.success ? 'success' : 'warning';
let title = __( "Test notification by email", 'really-simple-ssl' );
let text = response.message;
addHelpNotice(props.field.id, label, text, title, false);
});
}
return (
<>
{ props.field.url &&
<Hyperlink className="button button-default" text={props.field.button_text} url={props.field.url}/>
}
{ props.field.action &&
<button onClick={ () => onClickHandler( props.field.action ) } className="button button-default">{props.field.button_text}</button>
}
</>
);
}
export default Button