PluginProbe
Property Hive / 2.3.1
Property Hive v2.3.1
2.3.1 2.3.0 2.2.6 2.2.5 2.2.4 2.2.3 2.2.2 1.4.46 1.4.47 1.4.48 1.4.49 1.4.5 1.4.50 1.4.51 1.4.52 1.4.53 1.4.54 1.4.55 1.4.56 1.4.57 1.4.58 1.4.59 1.4.6 1.4.60 1.4.61 All 261 releases
← All changes | includes/salient-widgets/property-map-html.php +4 -0 2.2.42.3.1 View file →
@@ -13,19 +13,23 @@
13 13 if ( !isset($property->id) ) {
14 14 return;
15 15 }
16 16
17 +// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- WPBakery html_template local variable; this file is a framework-rendered view receiving $atts/$this, and PrefixAllGlobals sees it outside the framework render scope.
17 18 $attributes = array();
18 19 if ( isset($atts['height']) && $atts['height'] != '' )
19 20 {
21 + // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- WPBakery html_template local variable; this file is a framework-rendered view receiving $atts/$this, and PrefixAllGlobals sees it outside the framework render scope.
20 22 $attributes['height'] = $atts['height'];
21 23 }
22 24 if ( isset($atts['zoom']) && isset($atts['zoom']['size']) && $atts['zoom']['size'] != '' )
23 25 {
26 + // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- WPBakery html_template local variable; this file is a framework-rendered view receiving $atts/$this, and PrefixAllGlobals sees it outside the framework render scope.
24 27 $attributes['zoom'] = $atts['zoom']['size'];
25 28 }
26 29 if ( isset($atts['scrollwheel']) && $atts['scrollwheel'] != '' )
27 30 {
31 + // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- WPBakery html_template local variable; this file is a framework-rendered view receiving $atts/$this, and PrefixAllGlobals sees it outside the framework render scope.
28 32 $attributes['scrollwheel'] = $atts['scrollwheel'];
29 33 }
30 34
31 35 get_property_map($attributes);