for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Load code specific to Gutenberg blocks which are not tied to a module.
* This file is unusual, and is not an actual `module` as such.
* It is included in ./module-extras.php
*
*/
jetpack_register_block(
'map',
array(
'render_callback' => 'jetpack_map_block_load_assets',
)
);
jetpack_register_block( 'vr' );
* Tiled Gallery block. Depends on the Photon module.
* @since 6.9.0
if ( class_exists( 'Jetpack_Photon' ) && Jetpack::is_module_active( 'photon' ) ) {
'tiled-gallery',
'render_callback' => 'jetpack_tiled_gallery_load_block_assets',
* Tiled gallery block registration/dependency declaration.
* @param array $attr - Array containing the block attributes.
* @param string $content - String containing the block content.
* @return string
function jetpack_tiled_gallery_load_block_assets( $attr, $content ) {
$dependencies = array(
'lodash',
'wp-i18n',
'wp-token-list',
Jetpack_Gutenberg::load_assets_as_required( 'tiled-gallery', $dependencies );
return $content;
}
* Map block registration/dependency declaration.
* @param array $attr - Array containing the map block attributes.
* @param string $content - String containing the map block content.
function jetpack_map_block_load_assets( $attr, $content ) {
'wp-element',
$api_key = Jetpack_Options::get_option( 'mapbox_api_key' );
Jetpack_Gutenberg::load_assets_as_required( 'map', $dependencies );
return preg_replace( '/<div /', '<div data-api-key="'. esc_attr( $api_key ) .'" ', $content, 1 );