Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
06
/
wp-content
/
plugins
/
wordpress-popup
/
views
/
admin
/
global
/
components
:
select-units.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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>';