manager->get_control( $board_games_setting->id )->input_attrs; $board_games_min = ( isset( $board_games_atts['min'] ) ? $board_games_atts['min'] : $board_games_input ); $board_games_max = ( isset( $board_games_atts['max'] ) ? $board_games_atts['max'] : $board_games_input ); $board_games_step = ( isset( $board_games_atts['step'] ) ? $board_games_atts['step'] : 1 ); return ( $board_games_min <= $board_games_input && $board_games_input <= $board_games_max && is_int( $board_games_input / $board_games_step ) ? $board_games_input : $board_games_setting->default ); } endif; /** * Upsell customizer section. * * @since 1.0.0 * @access public */ class Board_Games_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 }} <# } #>

    <# } #>