PluginProbe
Elementor Website Builder – more than just a page builder / 3.7.5
Elementor Website Builder – more than just a page builder v3.7.5
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/managers/controls.php +14 -0 3.7.43.7.5 View file →
@@ -729,8 +729,22 @@
729 729 ];
730 730 }
731 731
732 732 /**
733 + * Remove existing stack from the stacks cache
734 + *
735 + * Removes the stack of a passed instance from the Controls Manager's stacks cache.
736 + *
737 + * @param Controls_Stack $controls_stack
738 + * @return void
739 + */
740 + public function delete_stack( Controls_Stack $controls_stack ) {
741 + $stack_id = $controls_stack->get_unique_name();
742 +
743 + unset( $this->stacks[ $stack_id ] );
744 + }
745 +
746 + /**
733 747 * Add control to stack.
734 748 *
735 749 * This method adds a new control to the stack.
736 750 *