| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/ict/wp-content/plugins/so-widgets-bundle/base/inc/fields/ |
Upload File : |
<?php
/**
* Class SiteOrigin_Widget_Field_Number
*/
class SiteOrigin_Widget_Field_Number extends SiteOrigin_Widget_Field_Text_Input_Base {
/**
* The minimum value of the allowed range.
*
* @var float
*/
protected $min;
/**
* The maximum value of the allowed range.
*
* @var float
*/
protected $max;
/**
* The step size when moving in the range.
*
* @var float
*/
protected $step;
/**
* The measurement unit this number uses.
*
* @var string
*/
protected $unit;
/**
* Whether to apply abs() when saving to ensure only positive numbers are possible.
*
* @var bool
*/
protected $abs;
protected function get_default_options() {
return array(
'input_type' => 'number',
);
}
protected function get_input_attributes() {
$input_attributes = array(
'step' => $this->step,
'min' => $this->min,
'max' => $this->max,
);
return array_filter( $input_attributes );
}
protected function get_input_classes() {
return array(
'siteorigin-widget-input',
'siteorigin-widget-input-number',
);
}
protected function render_after_field( $value, $instance ) {
if ( ! empty( $this->unit ) ) {
echo '<span class="siteorigin-widget-input-number-unit">' . $this->unit . '</span>';
}
parent::render_after_field( $value, $instance );
}
protected function sanitize_field_input( $value, $instance ) {
if ( empty( $value ) ) {
return false;
}
if ( ! empty( $this->min ) ) {
$value = max( $value, $this->min );
}
if ( ! empty( $this->max ) ) {
$value = min( $value, $this->max );
}
if ( ! empty( $this->abs ) ) {
$value = abs( $value );
}
return (float) $value;
}
}