Code Duplication    Length = 12-13 lines in 2 locations

vendor/ayecode/wp-super-duper/wp-super-duper.php 2 locations

@@ 1897-1909 (lines=13) @@
1894
					case "email":
1895
					case "tel":
1896
					case "url":
1897
					case "color":
1898
						?>
1899
						<label
1900
							for="<?php echo esc_attr( $this->get_field_id( $args['name'] ) ); ?>"><?php echo esc_attr( $args['title'] ); ?><?php echo $this->widget_field_desc( $args ); ?></label>
1901
						<input <?php echo $placeholder; ?> class="widefat"
1902
							<?php echo $custom_attributes; ?>
1903
							                               id="<?php echo esc_attr( $this->get_field_id( $args['name'] ) ); ?>"
1904
							                               name="<?php echo esc_attr( $this->get_field_name( $args['name'] ) ); ?>"
1905
							                               type="<?php echo esc_attr( $args['type'] ); ?>"
1906
							                               value="<?php echo esc_attr( $value ); ?>">
1907
						<?php
1908
1909
						break;
1910
					case "select":
1911
						$multiple = isset( $args['multiple'] ) && $args['multiple'] ? true : false;
1912
						if ( $multiple ) {
@@ 1948-1959 (lines=12) @@
1945
						</select>
1946
						<?php
1947
						break;
1948
					case "checkbox":
1949
						?>
1950
						<input <?php echo $placeholder; ?>
1951
							<?php checked( 1, $value, true ) ?>
1952
							<?php echo $custom_attributes; ?>
1953
							class="widefat" id="<?php echo esc_attr( $this->get_field_id( $args['name'] ) ); ?>"
1954
							name="<?php echo esc_attr( $this->get_field_name( $args['name'] ) ); ?>" type="checkbox"
1955
							value="1">
1956
						<label
1957
							for="<?php echo esc_attr( $this->get_field_id( $args['name'] ) ); ?>"><?php echo esc_attr( $args['title'] ); ?><?php echo $this->widget_field_desc( $args ); ?></label>
1958
						<?php
1959
						break;
1960
					case "hidden":
1961
						?>
1962
						<input id="<?php echo esc_attr( $this->get_field_id( $args['name'] ) ); ?>"