PATH:
home
/
lab2454c
/
incforce.com
/
wp-content
/
plugins
/
paid-memberships-pro
/
blocks
/
checkout-button
/** * Internal block libraries */ const { __ } = wp.i18n; const { Component } = wp.element; const { PanelBody, TextControl, SelectControl, } = wp.components; const { InspectorControls, } = wp.blockEditor; /** * Create an Inspector Controls wrapper Component */ export default class Inspector extends Component { constructor() { super( ...arguments ); } render() { const { attributes: { text, level, css_class }, setAttributes } = this.props; return ( <InspectorControls> <PanelBody> <TextControl label={ __( 'Button Text', 'paid-memberships-pro' ) } help={ __( 'Text for checkout button', 'paid-memberships-pro' ) } value={ text } onChange={ text => setAttributes( { text } ) } /> </PanelBody> <PanelBody> <SelectControl label={ __( 'Membership Level', 'paid-memberships-pro' ) } help={ __( 'The level to link to for checkout button', 'paid-memberships-pro' ) } value={ level } onChange={ level => setAttributes( { level } ) } options={ window.pmpro.all_level_values_and_labels } /> </PanelBody> <PanelBody> <TextControl label={ __( 'CSS Class', 'paid-memberships-pro' ) } help={ __( 'Additional styling for checkout button', 'paid-memberships-pro' ) } value={ css_class } onChange={ css_class => setAttributes( { css_class } ) } /> </PanelBody> </InspectorControls> ); } }
[-] block.php
[edit]
[-] inspector.js
[edit]
[+]
..
[-] block.js
[edit]