PHP 8.2.31
Preview: amazon.php Size: 955 B
//proc/self/root/home/nshryvcy/himaltourism.com/wp-content/plugins/jetpack/extensions/blocks/amazon/amazon.php

<?php
/**
 * Amazon Block.
 *
 * @since 8.x
 *
 * @package automattic/jetpack
 */

namespace Automattic\Jetpack\Extensions\Amazon;

use Automattic\Jetpack\Blocks;
use Jetpack_Gutenberg;

const FEATURE_NAME = 'amazon';
const BLOCK_NAME   = 'jetpack/' . FEATURE_NAME;

/**
 * Registers the block for use in Gutenberg
 * This is done via an action so that we can disable
 * registration if we need to.
 */
function register_block() {
	Blocks::jetpack_register_block(
		BLOCK_NAME,
		array( 'render_callback' => __NAMESPACE__ . '\load_assets' )
	);
}
add_action( 'init', __NAMESPACE__ . '\register_block' );

/**
 * Amazon block registration/dependency declaration.
 *
 * @param array  $attr    Array containing the Amazon block attributes.
 * @param string $content String containing the Amazon block content.
 *
 * @return string
 */
function load_assets( $attr, $content ) {
	Jetpack_Gutenberg::load_assets_as_required( FEATURE_NAME );
	return $content;
}

Directory Contents

Dirs: 0 × Files: 1

Name Size Perms Modified Actions
955 B lrw-r--r-- 2023-04-04 05:35:20
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).