PATH:
home
/
lab2454c
/
incforce.com
/
wp-content
/
plugins
/
paid-memberships-pro
/
blocks
/
checkout-button
<?php /** * Sets up checkout-button block, does not format frontend * * @package blocks/checkout-button **/ namespace PMPro\blocks\checkout_button; defined( 'ABSPATH' ) || die( 'File cannot be accessed directly' ); // Only load if Gutenberg is available. if ( ! function_exists( 'register_block_type' ) ) { return; } add_action( 'init', __NAMESPACE__ . '\register_dynamic_block' ); /** * Register the dynamic block. * * @since 2.1.0 * * @return void */ function register_dynamic_block() { // Hook server side rendering into render callback. register_block_type( 'pmpro/checkout-button', [ 'attributes' => array( 'all_levels' => pmpro_getAllLevels( true, true ) ), 'render_callback' => __NAMESPACE__ . '\render_dynamic_block', ] ); } /** * Server rendering for checkout-button block. * * @param array $attributes contains text, level, and css_class strings. * @return string **/ function render_dynamic_block( $attributes ) { if ( ! empty( $attributes['level'] ) ) { $level = $attributes['level']; } else { $level = null; } if ( ! empty( $attributes['text'] ) ) { $text = $attributes['text']; } else { $text = __( 'Buy Now', 'paid-memberships-pro' ); } if ( ! empty( $attributes['css_class'] ) ) { $css_class = $attributes['css_class']; } else { $css_class = null; } return( "<span class=\"" . pmpro_get_element_class( 'span_pmpro_checkout_button' ) . "\">" . pmpro_getCheckoutButton( $level, $text, $css_class ) . "</span>" ); }
[-] block.php
[edit]
[-] inspector.js
[edit]
[+]
..
[-] block.js
[edit]