Code Duplication    Length = 12-13 lines in 2 locations

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

@@ 2145-2157 (lines=13) @@
2142
					case "email":
2143
					case "tel":
2144
					case "url":
2145
					case "color":
2146
						?>
2147
						<label
2148
							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>
2149
						<input <?php echo $placeholder; ?> class="widefat"
2150
							<?php echo $custom_attributes; ?>
2151
							                               id="<?php echo esc_attr( $this->get_field_id( $args['name'] ) ); ?>"
2152
							                               name="<?php echo esc_attr( $this->get_field_name( $args['name'] ) ); ?>"
2153
							                               type="<?php echo esc_attr( $args['type'] ); ?>"
2154
							                               value="<?php echo esc_attr( $value ); ?>">
2155
						<?php
2156
2157
						break;
2158
					case "select":
2159
						$multiple = isset( $args['multiple'] ) && $args['multiple'] ? true : false;
2160
						if ( $multiple ) {
@@ 2196-2207 (lines=12) @@
2193
						</select>
2194
						<?php
2195
						break;
2196
					case "checkbox":
2197
						?>
2198
						<input <?php echo $placeholder; ?>
2199
							<?php checked( 1, $value, true ) ?>
2200
							<?php echo $custom_attributes; ?>
2201
							class="widefat" id="<?php echo esc_attr( $this->get_field_id( $args['name'] ) ); ?>"
2202
							name="<?php echo esc_attr( $this->get_field_name( $args['name'] ) ); ?>" type="checkbox"
2203
							value="1">
2204
						<label
2205
							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>
2206
						<?php
2207
						break;
2208
					case "hidden":
2209
						?>
2210
						<input id="<?php echo esc_attr( $this->get_field_id( $args['name'] ) ); ?>"