Code Duplication    Length = 12-13 lines in 2 locations

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

@@ 1848-1860 (lines=13) @@
1845
					case "email":
1846
					case "tel":
1847
					case "url":
1848
					case "color":
1849
						?>
1850
						<label
1851
							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>
1852
						<input <?php echo $placeholder; ?> class="widefat"
1853
							<?php echo $custom_attributes; ?>
1854
							                               id="<?php echo esc_attr( $this->get_field_id( $args['name'] ) ); ?>"
1855
							                               name="<?php echo esc_attr( $this->get_field_name( $args['name'] ) ); ?>"
1856
							                               type="<?php echo esc_attr( $args['type'] ); ?>"
1857
							                               value="<?php echo esc_attr( $value ); ?>">
1858
						<?php
1859
1860
						break;
1861
					case "select":
1862
						$multiple = isset( $args['multiple'] ) && $args['multiple'] ? true : false;
1863
						if ( $multiple ) {
@@ 1899-1910 (lines=12) @@
1896
						</select>
1897
						<?php
1898
						break;
1899
					case "checkbox":
1900
						?>
1901
						<input <?php echo $placeholder; ?>
1902
							<?php checked( 1, $value, true ) ?>
1903
							<?php echo $custom_attributes; ?>
1904
							class="widefat" id="<?php echo esc_attr( $this->get_field_id( $args['name'] ) ); ?>"
1905
							name="<?php echo esc_attr( $this->get_field_name( $args['name'] ) ); ?>" type="checkbox"
1906
							value="1">
1907
						<label
1908
							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>
1909
						<?php
1910
						break;
1911
					case "hidden":
1912
						?>
1913
						<input id="<?php echo esc_attr( $this->get_field_id( $args['name'] ) ); ?>"