Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
<?php
/**
* Block Name: Pricing Plans
* Description: Provides an upgrade option to different plans. Used on wordpress.com/forums.
* Author: Lighthouse
*
* @package pricing-plans
*/
/**
* Load the necessary config data.
*
* @param string $handle The handle of the script to add the config data to.
* @return void
*/
function happyblocks_pricing_plans_enqueue_config_data( $handle ) {
wp_add_inline_script(
$handle,
sprintf(
'window.A8C_HAPPY_BLOCKS_CONFIG = %s;
window.configData ||= {};',
wp_json_encode( happyblocks_pricing_plans_get_config() )
),
'before'
);
}
/**
* Include the necessary config data for both, the editor and the view of the block.
*
* @return void
*/
function happyblocks_pricing_plans_enqueue_config_data_for_handle() {
happyblocks_pricing_plans_enqueue_config_data( 'happy-blocks-pricing-plans-view-script' );
happyblocks_pricing_plans_enqueue_config_data( 'happy-blocks-pricing-plans-editor-script' );
}
add_action( 'enqueue_block_editor_assets', 'happyblocks_pricing_plans_enqueue_config_data_for_handle' );
add_action( 'wp_enqueue_scripts', 'happyblocks_pricing_plans_enqueue_config_data_for_handle' );
/**
* Decide if the current logged in user is the topic author.
*
* @return bool true if the current user is the topic author, false otherwise.
*/
function happyblocks_pricing_plans_is_author() {
// If the user is not authenticated, then we can't get their domain.
if ( ! is_user_logged_in() ) {
return false;
}
// If BBPress is not active, we can't tell if the current user is the author.
if ( ! function_exists( 'bbp_get_topic_id' ) ) {
return false;
}
$topic_id = bbp_get_topic_id();
$author_id = intval( get_post_field( 'post_author', $topic_id ) );
return get_current_user_id() === $author_id;
}
/**
* Get the pricing plans configuration
*
* @return array
*/
function happyblocks_pricing_plans_get_config() {
return array(
'features' => array(
'tracking' => apply_filters( 'happy_blocks_pricing_plans_tracking', true ),
),
'locale' => get_user_locale(),
);
}
/**
* Render happy-tools/pricing-plans block view placeholder.
*
* @param array $attributes Block attributes.
* @return string
*/
function happyblocks_pricing_plans_render_callback( $attributes ) {
// The domain should be set to false instead of null when not available, see https://github.com/Automattic/wp-calypso/pull/70402#discussion_r1033299970.
$attributes['domain'] = happyblocks_pricing_plans_is_author() ? $attributes['domain'] : false;
$json_attributes = htmlspecialchars( wp_json_encode( $attributes ), ENT_QUOTES, 'UTF-8' );
return <<<HTML
<div data-attributes="${json_attributes}" class="a8c-happy-tools-pricing-plans-block-placeholder" ></div>
HTML;
}
/**
* Register happy-blocks.
*/
function happyblocks_pricing_plan_register() {
register_block_type(
__DIR__ . ( is_rtl() ? '/build/rtl' : '/build' ),
array(
'render_callback' => 'happyblocks_pricing_plans_render_callback',
)
);
}
add_action( 'init', 'happyblocks_pricing_plan_register' );