File "select-units.php"
Full Path: /home/londdqdw/public_html/06/wp-content/plugins/wordpress-popup/views/admin/global/components/select-units.php
File size: 1.02 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Select Units.
*
* @package Hustle
* @since 4.3.0
*/
$label = ( isset( $label ) && ! empty( $label ) ) ? $label : __( 'Pick a unit', 'hustle' );
$units = array(
'px' => 'px',
'%' => '%',
'vw' => 'vw',
'vh' => 'vh',
);
if ( ! empty( $exclude_units ) ) {
foreach ( $exclude_units as $unit ) {
unset( $units[ $unit ] );
}
}
if ( ! empty( $extra_units ) ) {
$units = array_merge( $units, $extra_units );
}
echo '<label for="hustle-' . esc_attr( $name ) . '" id="hustle-' . esc_attr( $name ) . '-label" class="sui-label">';
echo esc_html( $label );
Hustle_Layout_Helper::get_html_for_options(
array(
array(
'type' => 'select',
'name' => $name,
'options' => $units,
'id' => 'hustle-' . $name,
'selected' => $selected,
'class' => 'sui-select sui-select-sm sui-select-inline sui-inlabel',
'attributes' => array(
'data-width' => '50',
'data-attribute' => $name,
'aria-labelledby' => 'hustle-' . $name . '-label',
),
),
)
);
echo '</label>';