File: /var/www/vfconf/wp-content/plugins/so-widgets-bundle/base/inc/fields/measurement.class.php
<?php
/**
* Class SiteOrigin_Widget_Field_Measurement
*/
class SiteOrigin_Widget_Field_Measurement extends SiteOrigin_Widget_Field_Text_Input_Base {
/* The 'units' property is optional and defaults to the list returned by `siteorigin_widgets_get_measurements_list`.
*
* @access protected
* @var array
*/
protected $units;
/**
* The default unit of measurement if the unit of measurement isn't able to be detected. Default to px.
*
* @var string
*/
protected $default_unit;
protected function get_input_classes() {
$input_classes = parent::get_input_classes();
$input_classes[] = 'siteorigin-widget-input-measurement';
return $input_classes;
}
/**
* Parse a value into a unit and value.
*
* @return array
*/
protected function get_render_values( $value ) {
if ( ! empty( $value ) ) {
preg_match( '/(\d+\.?\d*)([a-z%]+)*/', $value, $matches );
$num_matches = count( $matches );
}
$val = array();
$val['value'] = ! empty( $num_matches ) && $num_matches > 1 ? $matches[1] : null;
$val['unit'] = ! empty( $num_matches ) && $num_matches > 2 ? $matches[2] : null;
return $val;
}
protected function render_field( $value, $instance ) {
$value_parts = $this->get_render_values( $value );
parent::render_field( $value_parts['value'], $instance );
}
protected function render_after_field( $value, $instance ) {
$value_parts = $this->get_render_values( $value );
$selected_unit = $value_parts['unit'];
if ( is_null( $selected_unit ) ) {
$unit_name = $this->get_unit_field_name( $this->base_name );
if ( ! empty( $instance[ $unit_name ] ) ) {
$selected_unit = $instance[ $unit_name ];
} elseif ( isset( $this->default ) ) {
$default_parts = $this->get_render_values( $this->default );
$selected_unit = $default_parts['unit'];
}
}
$units = ! empty( $this->units ) && is_array( $this->units ) ? $this->units : siteorigin_widgets_get_measurements_list();
?>
<select
class="sow-measurement-select-unit siteorigin-widget-input"
name="<?php echo esc_attr( $this->for_widget->so_get_field_name( $this->base_name . '_unit', $this->parent_container ) ); ?>"
>
<?php foreach ( $units as $unit ) { ?>
<option value="<?php echo esc_attr( $unit ); ?>" <?php selected( $unit, $selected_unit, true ); ?>>
<?php echo esc_html( $unit ); ?>
</option>
<?php }?>
</select>
<div class="clear"></div>
<?php
//Still want the default description, if there is one.
parent::render_after_field( $value, $instance );
}
public function enqueue_scripts() {
wp_enqueue_style( 'so-measurement-field', plugin_dir_url( __FILE__ ) . 'css/measurement-field.css', array(), SOW_BUNDLE_VERSION );
}
// This is doing sanitization and is being used to concatenate the numeric measurement value and the selected
// measurement unit.
protected function sanitize_field_input( $value, $instance ) {
//Get the property name of the unit field
$unit_name = $this->get_unit_field_name( $this->base_name );
//Initialize with default value, if any.
$default_parts = $this->get_render_values( $this->default );
$unit = $default_parts['unit'];
if ( isset( $instance[ $unit_name ] ) ) {
$units = ! empty( $this->units ) && is_array( $this->units ) ? $this->units : siteorigin_widgets_get_measurements_list();
if ( in_array( $instance[ $unit_name ], $units ) ) {
$unit = $instance[ $unit_name ];
}
unset( $instance[ $unit_name ] );
}
// Sensible default, if we somehow end up without a unit.
if ( empty( $unit ) ) {
$unit = empty( $this->default_unit ) ? 'px' : $this->default_unit;
}
// Return false if empty, while still accepting 0 as a valid value.
$value = ( empty( $value ) && ! is_numeric( $value ) ) ? false : ( (float) $value ) . $unit;
return $value;
}
// Get the name of the dropdown field rendered to allow the user to select a measurement unit.
public function get_unit_field_name( $base_name ) {
$v_name = $base_name;
if ( strpos( $v_name, '][' ) !== false ) {
// Remove this splitter
$v_name = substr( $v_name, strrpos( $v_name, '][' ) + 2 );
}
return $v_name . '_unit';
}
}