PluginProbe
Elementor Website Builder – more than just a page builder / 3.4.3
Elementor Website Builder – more than just a page builder v3.4.3
4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 All 452 releases
← All changes | includes/controls/hover-animation.php +9 -2 3.4.23.4.3 View file →
@@ -84,16 +84,23 @@
84 84 'buzz-out' => 'Buzz Out',
85 85 ];
86 86
87 87 $additional_animations = [];
88 +
88 89 /**
89 - * Element hover animations list.
90 + * Hover animations.
90 91 *
92 + * Filters the animations list displayed in the hover animations control.
93 + *
94 + * This hook can be used to register new animations in addition to the
95 + * basic Elementor hover animations.
96 + *
91 97 * @since 2.4.0
92 98 *
93 - * @param array $additional_animations Additional Animations array.
99 + * @param array $additional_animations Additional animations array.
94 100 */
95 101 $additional_animations = apply_filters( 'elementor/controls/hover_animations/additional_animations', $additional_animations );
102 +
96 103 self::$_animations = array_merge( self::$_animations, $additional_animations );
97 104 }
98 105
99 106 return self::$_animations;