<?php /* Button style and color scheme */ $btn_wrapper_class = $button_style_class = $button_color_class = $button_hover_class = ''; if ( sway_get_option( 'tek-panel-button-style' ) == 'solid-button') { $button_style_class .= 'tt_primary_button'; } elseif ( sway_get_option( 'tek-panel-button-style' ) == 'outline-button') { $button_style_class .= 'tt_secondary_button'; } else { $button_style_class .= 'tt_primary_button'; } if ( sway_get_option( 'tek-panel-button-color' ) == 'primary-color') { $button_color_class .= 'btn_primary_color'; } elseif ( sway_get_option( 'tek-panel-button-color' ) == 'secondary-color') { $button_color_class .= 'btn_secondary_color'; } else { $button_color_class .= 'btn_primary_color'; } if ( '' != sway_get_option( 'tek-panel-button-hover-style' ) ) { $button_hover_class .= sway_get_option( 'tek-panel-button-hover-style' ); } $btn_wrapper_class = implode(' ', array('modal-menu-item', 'tt_button', $button_style_class, $button_color_class, $button_hover_class)); ?> <?php if ( sway_get_option( 'tek-panel-button' ) && sway_get_option( 'tek-panel-button-action' ) == '1' ) : ?> <a class="<?php echo esc_attr($btn_wrapper_class); ?> panel-trigger-btn"><?php echo esc_html( sway_get_option( 'tek-panel-button-text' ) );?></a> <?php elseif ( sway_get_option( 'tek-panel-button' ) && sway_get_option( 'tek-panel-button-action' ) == '2' ) : ?> <?php if ( '' != sway_get_option( 'tek-panel-scroll-id' ) ) : ?> <a class="<?php echo esc_attr($btn_wrapper_class); ?> scroll-section" href="<?php if( is_front_page()) { echo esc_attr( sway_get_option( 'tek-panel-scroll-id' ) ); } else { echo esc_url(site_url()) . esc_attr( sway_get_option( 'tek-panel-scroll-id' ) );} ?>"><?php echo esc_html( sway_get_option( 'tek-panel-button-text' ) );?></a> <?php endif; ?> <?php elseif ( sway_get_option( 'tek-panel-button' ) && sway_get_option( 'tek-panel-button-action' ) == '3' ) : ?> <?php if ( '' != sway_get_option( 'tek-panel-button-new-page' ) ) : ?> <a class="<?php echo esc_attr($btn_wrapper_class); ?>" <?php echo ( sway_get_option( 'tek-panel-button-target' ) == 'new-page') ? 'target="_blank"' : 'target="_self"'; ?> href="<?php echo esc_url( sway_get_option( 'tek-panel-button-new-page' ) ); ?>"><?php echo esc_html( sway_get_option( 'tek-panel-button-text' ) );?></a> <?php endif; ?> <?php endif; ?>