mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-23 08:11:08 +00:00
24 lines
537 B
PHP
24 lines
537 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Class SiteOrigin_Widget_Field_Number
|
||
|
*/
|
||
|
class SiteOrigin_Widget_Field_Number extends SiteOrigin_Widget_Field_Text_Input_Base {
|
||
|
|
||
|
protected function get_default_options() {
|
||
|
return array(
|
||
|
'input_type' => 'number',
|
||
|
);
|
||
|
}
|
||
|
|
||
|
protected function get_input_classes() {
|
||
|
$input_classes = parent::get_input_classes();
|
||
|
$input_classes[] = 'siteorigin-widget-input-number';
|
||
|
return $input_classes;
|
||
|
}
|
||
|
|
||
|
protected function sanitize_field_input( $value, $instance ) {
|
||
|
return ( $value === '' ) ? false : (float) $value;
|
||
|
}
|
||
|
}
|