@@ -1,1 +1,1 @@ |
||
1 | -<?php return array('dependencies' => array('react', 'react-dom', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render'), 'version' => '80da9ca24011fcf66166'); |
|
1 | +<?php return array( 'dependencies' => array( 'react', 'react-dom', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render' ), 'version' => '80da9ca24011fcf66166' ); |
@@ -1,1 +1,1 @@ |
||
1 | -<?php return array('dependencies' => array('react', 'react-dom', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render'), 'version' => 'd419e87c5e45a48ba7d1'); |
|
1 | +<?php return array( 'dependencies' => array( 'react', 'react-dom', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render' ), 'version' => 'd419e87c5e45a48ba7d1' ); |
@@ -1,1 +1,1 @@ |
||
1 | -<?php return array('dependencies' => array('react', 'react-dom', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render'), 'version' => 'f20177ed0473b32571c0'); |
|
1 | +<?php return array( 'dependencies' => array( 'react', 'react-dom', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render' ), 'version' => 'f20177ed0473b32571c0' ); |
@@ -1,1 +1,1 @@ |
||
1 | -<?php return array('dependencies' => array('moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render'), 'version' => 'b37f944bb6481072e997'); |
|
1 | +<?php return array( 'dependencies' => array( 'moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render' ), 'version' => 'b37f944bb6481072e997' ); |
@@ -1,1 +1,1 @@ |
||
1 | -<?php return array('dependencies' => array('react', 'react-dom', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render'), 'version' => 'dd09a868735f613d7e86'); |
|
1 | +<?php return array( 'dependencies' => array( 'react', 'react-dom', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render' ), 'version' => 'dd09a868735f613d7e86' ); |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | * |
34 | 34 | * @return string $output |
35 | 35 | */ |
36 | - static function render( $block_attributes = [] ) { |
|
36 | + static function render( $block_attributes = [ ] ) { |
|
37 | 37 | $block_to_shortcode_attributes_map = [ |
38 | 38 | 'viewId' => 'id', |
39 | 39 | 'postId' => 'post_id', |
@@ -51,13 +51,13 @@ discard block |
||
51 | 51 | 'backLinkLabel' => 'back_link_label', |
52 | 52 | ]; |
53 | 53 | |
54 | - $shortcode_attributes = []; |
|
54 | + $shortcode_attributes = [ ]; |
|
55 | 55 | |
56 | 56 | foreach ( $block_attributes as $attribute => $value ) { |
57 | 57 | $value = esc_attr( sanitize_text_field( $value ) ); |
58 | 58 | |
59 | 59 | if ( isset( $block_to_shortcode_attributes_map[ $attribute ] ) && ! empty( $value ) ) { |
60 | - $shortcode_attributes[] = "{$block_to_shortcode_attributes_map[$attribute]}={$value}"; |
|
60 | + $shortcode_attributes[ ] = "{$block_to_shortcode_attributes_map[ $attribute ]}={$value}"; |
|
61 | 61 | } |
62 | 62 | } |
63 | 63 |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | * |
34 | 34 | * @return string $output |
35 | 35 | */ |
36 | - static function render( $block_attributes = [] ) { |
|
36 | + static function render( $block_attributes = [ ] ) { |
|
37 | 37 | $block_to_shortcode_attributes_map = [ |
38 | 38 | 'viewId' => 'view_id', |
39 | 39 | 'entryId' => 'entry_id', |
@@ -41,16 +41,16 @@ discard block |
||
41 | 41 | 'fieldSettingOverrides' => 'field_setting_overrides', |
42 | 42 | ]; |
43 | 43 | |
44 | - $shortcode_attributes = []; |
|
44 | + $shortcode_attributes = [ ]; |
|
45 | 45 | |
46 | 46 | foreach ( $block_attributes as $attribute => $value ) { |
47 | 47 | $value = esc_attr( sanitize_text_field( $value ) ); |
48 | 48 | |
49 | 49 | if ( isset( $block_to_shortcode_attributes_map[ $attribute ] ) && ! empty( $value ) ) { |
50 | 50 | if ( 'field_setting_overrides' === $attribute ) { |
51 | - $shortcode_attributes[] = "{$value}"; |
|
51 | + $shortcode_attributes[ ] = "{$value}"; |
|
52 | 52 | } else { |
53 | - $shortcode_attributes[] = sprintf( '%s="%s"', $block_to_shortcode_attributes_map[ $attribute ], $value ); |
|
53 | + $shortcode_attributes[ ] = sprintf( '%s="%s"', $block_to_shortcode_attributes_map[ $attribute ], $value ); |
|
54 | 54 | } |
55 | 55 | } |
56 | 56 | } |
@@ -33,20 +33,20 @@ |
||
33 | 33 | * |
34 | 34 | * @return string $output |
35 | 35 | */ |
36 | - static function render( $block_attributes = [] ) { |
|
36 | + static function render( $block_attributes = [ ] ) { |
|
37 | 37 | $block_to_shortcode_attributes_map = [ |
38 | 38 | 'viewId' => 'id', |
39 | 39 | 'detail' => 'detail', |
40 | 40 | |
41 | 41 | ]; |
42 | 42 | |
43 | - $shortcode_attributes = []; |
|
43 | + $shortcode_attributes = [ ]; |
|
44 | 44 | |
45 | 45 | foreach ( $block_attributes as $attribute => $value ) { |
46 | 46 | $value = esc_attr( sanitize_text_field( $value ) ); |
47 | 47 | |
48 | 48 | if ( isset( $block_to_shortcode_attributes_map[ $attribute ] ) && ! empty( $value ) ) { |
49 | - $shortcode_attributes[] = sprintf( '%s="%s"', $block_to_shortcode_attributes_map[ $attribute ], $value ); |
|
49 | + $shortcode_attributes[ ] = sprintf( '%s="%s"', $block_to_shortcode_attributes_map[ $attribute ], $value ); |
|
50 | 50 | } |
51 | 51 | } |
52 | 52 |
@@ -33,19 +33,19 @@ |
||
33 | 33 | * |
34 | 34 | * @return string $output |
35 | 35 | */ |
36 | - static function render( $block_attributes = [] ) { |
|
36 | + static function render( $block_attributes = [ ] ) { |
|
37 | 37 | $block_to_shortcode_attributes_map = [ |
38 | 38 | 'entryId' => 'id', |
39 | 39 | 'viewId' => 'view_id', |
40 | 40 | ]; |
41 | 41 | |
42 | - $shortcode_attributes = []; |
|
42 | + $shortcode_attributes = [ ]; |
|
43 | 43 | |
44 | 44 | foreach ( $block_attributes as $attribute => $value ) { |
45 | 45 | $value = esc_attr( sanitize_text_field( $value ) ); |
46 | 46 | |
47 | 47 | if ( isset( $block_to_shortcode_attributes_map[ $attribute ] ) && ! empty( $value ) ) { |
48 | - $shortcode_attributes[] = sprintf( '%s="%s"', $block_to_shortcode_attributes_map[ $attribute ], $value ); |
|
48 | + $shortcode_attributes[ ] = sprintf( '%s="%s"', $block_to_shortcode_attributes_map[ $attribute ], $value ); |
|
49 | 49 | } |
50 | 50 | } |
51 | 51 |