HEX
Server: Apache
System: Linux webm020.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: bohousj (181416)
PHP: 8.4.22
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/bohousj/www/wp-content/plugins/perfect-woocommerce-brands/templates/widgets/dropdown.php
<?php

/**
 * The template for displaying the dropdown widget
 *
 * @version 1.0.0
 */

defined( 'ABSPATH' ) || die( 'No script kiddies please!' );
?>

<select class="pwb-dropdown-widget">
	<option selected="true" disabled="disabled">
		<?php echo esc_html( apply_filters( 'pwb_dropdown_placeholder', esc_html__( 'Brands', 'perfect-woocommerce-brands' ) ) ); ?>
	</option>
	<?php foreach ( $brands as $brand ) : ?>
		<option value="<?php echo esc_url( $brand->get( 'link' ) ); ?>" <?php selected( $data['selected'], $brand->get( 'id' ) ); ?>>
			<?php echo esc_html( $brand->get( 'name' ) ); ?>
		</option>
	<?php endforeach; ?>
</select>