Elementor\Element_Base::end_controls_section PHP Method

end_controls_section() public method

    public function end_controls_section()
    {
        // Save the current section for the action
        $current_section = $this->_current_section;
        $section_id = $current_section['section'];
        $args = ['tab' => $current_section['tab']];
        do_action('elementor/element/before_section_end', $this, $section_id, $args);
        do_action('elementor/element/' . $this->get_name() . '/' . $section_id . '/before_section_end', $this, $args);
        $this->_current_section = null;
        do_action('elementor/element/after_section_end', $this, $section_id, $args);
        do_action('elementor/element/' . $this->get_name() . '/' . $section_id . '/after_section_end', $this, $args);
    }