manager->get_control( $aviation_industry_setting->id )->input_attrs; $aviation_industry_min = ( isset( $aviation_industry_atts['min'] ) ? $aviation_industry_atts['min'] : $aviation_industry_input ); $aviation_industry_max = ( isset( $aviation_industry_atts['max'] ) ? $aviation_industry_atts['max'] : $aviation_industry_input ); $aviation_industry_step = ( isset( $aviation_industry_atts['step'] ) ? $aviation_industry_atts['step'] : 1 ); return ( $aviation_industry_min <= $aviation_industry_input && $aviation_industry_input <= $aviation_industry_max && is_int( $aviation_industry_input / $aviation_industry_step ) ? $aviation_industry_input : $aviation_industry_setting->default ); } endif; /** * Upsell customizer section. * * @since 1.0.0 * @access public */ class Aviation_Industry_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() { ?>
  • <# if ( data.notice ) { #>

    {{ data.title }}

    <# } #> <# if ( !data.notice ) { #>

    {{ data.title }} <# if ( data.pro_text && data.pro_url ) { #> {{ data.pro_text }} <# } #>

    <# } #>