Code Duplication    Length = 12-13 lines in 2 locations

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

@@ 1499-1511 (lines=13) @@
1496
					case "email":
1497
					case "tel":
1498
					case "url":
1499
					case "color":
1500
						?>
1501
						<label
1502
							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>
1503
						<input <?php echo $placeholder; ?> class="widefat"
1504
							<?php echo $custom_attributes; ?>
1505
							                               id="<?php echo esc_attr( $this->get_field_id( $args['name'] ) ); ?>"
1506
							                               name="<?php echo esc_attr( $this->get_field_name( $args['name'] ) ); ?>"
1507
							                               type="<?php echo esc_attr( $args['type'] ); ?>"
1508
							                               value="<?php echo esc_attr( $value ); ?>">
1509
						<?php
1510
1511
						break;
1512
					case "select":
1513
						$multiple = isset( $args['multiple'] ) && $args['multiple'] ? true : false;
1514
						if ( $multiple ) {
@@ 1550-1561 (lines=12) @@
1547
						</select>
1548
						<?php
1549
						break;
1550
					case "checkbox":
1551
						?>
1552
						<input <?php echo $placeholder; ?>
1553
							<?php checked( 1, $value, true ) ?>
1554
							<?php echo $custom_attributes; ?>
1555
							class="widefat" id="<?php echo esc_attr( $this->get_field_id( $args['name'] ) ); ?>"
1556
							name="<?php echo esc_attr( $this->get_field_name( $args['name'] ) ); ?>" type="checkbox"
1557
							value="1">
1558
						<label
1559
							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>
1560
						<?php
1561
						break;
1562
					case "hidden":
1563
						?>
1564
						<input id="<?php echo esc_attr( $this->get_field_id( $args['name'] ) ); ?>"