"; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
foreach ( $tab['sections'] as $section_id => $section ) {
if ( ! $this->should_render_section( $section ) ) {
continue;
}
$full_section_id = 'elementor_' . $section_id . '_section';
if ( ! empty( $section['label'] ) ) {
echo '
' . esc_html( $section['label'] ) . '
';
}
if ( ! empty( $section['callback'] ) ) {
$section['callback']();
}
echo '
';
}
echo '
';
}
submit_button( __( 'Save Changes', 'elementor' ), 'primary', 'submit', true, [ 'data-id' => 'elementor-settings-button-save-changes' ] );
?>