manager->get_control( $beauty_parlour_salon_setting->id )->input_attrs; $beauty_parlour_salon_min = ( isset( $beauty_parlour_salon_atts['min'] ) ? $beauty_parlour_salon_atts['min'] : $beauty_parlour_salon_input ); $beauty_parlour_salon_max = ( isset( $beauty_parlour_salon_atts['max'] ) ? $beauty_parlour_salon_atts['max'] : $beauty_parlour_salon_input ); $beauty_parlour_salon_step = ( isset( $beauty_parlour_salon_atts['step'] ) ? $beauty_parlour_salon_atts['step'] : 1 ); return ( $beauty_parlour_salon_min <= $beauty_parlour_salon_input && $beauty_parlour_salon_input <= $beauty_parlour_salon_max && is_int( $beauty_parlour_salon_input / $beauty_parlour_salon_step ) ? $beauty_parlour_salon_input : $beauty_parlour_salon_setting->default ); } endif; /** * Upsell customizer section. * * @since 1.0.0 * @access public */ class Beauty_Parlour_Salon_Customize_Section_Upsell extends WP_Customize_Section { /** * The type of customize section being rendered. * * @since 1.0.0 * @access public * @var string */ public $type = 'upsell'; /** * Custom button text to output. * * @since 1.0.0 * @access public * @var string */ public $pro_text = ''; /** * Custom pro button URL. * * @since 1.0.0 * @access public * @var string */ public $pro_url = ''; public $notice = ''; public $nonotice = ''; /** * Add custom parameters to pass to the JS via JSON. * * @since 1.0.0 * @access public * @return void */ public function json() { $json = parent::json(); $json['pro_text'] = $this->pro_text; $json['pro_url'] = esc_url( $this->pro_url ); $json['notice'] = esc_attr( $this->notice ); $json['nonotice'] = esc_attr( $this->nonotice ); return $json; } /** * Outputs the Underscore.js template. * * @since 1.0.0 * @access public * @return void */ protected function render_template() { ?>