| Current Path : /home/ereika83/public_html/wp-content/plugins/bbpowerpack/modules/fl-button/includes/ |
| Current File : /home/ereika83/public_html/wp-content/plugins/bbpowerpack/modules/fl-button/includes/frontend.php |
<?php
$attr = '';
$classes = array('fl-button');
if ( isset( $settings->link_2 ) && ! empty( $settings->link_2 ) ) {
$attr .= ' data-primary-link="' . esc_url( do_shortcode( $settings->link ) ) . '"';
$attr .= ' data-secondary-link="' . esc_url( do_shortcode( $settings->link_2 ) ) . '"';
}
if ( isset( $settings->html_attributes ) && is_array( $settings->html_attributes ) && ! empty( $settings->html_attributes ) ) {
$attrs = $settings->html_attributes;
foreach ( $attrs as $attr_key => $attr_value ) {
$attr .= ' ' . $key . '="' . esc_attr( $attr_value ) . '"';
}
}
if ( 'enable' == $settings->icon_animation ) {
$classes[] = 'fl-button-icon-animation';
}
if ( isset( $settings->class ) && ! empty( $settings->class ) ) {
$classes[] = esc_attr( $settings->class );
}
?>
<div class="<?php echo $module->get_classname(); ?>">
<?php if ( isset($settings->click_action) && $settings->click_action == 'lightbox' ) : ?>
<a href="<?php echo $settings->lightbox_content_type == 'video' ? $settings->lightbox_video_link : '#'; ?>" class="fl-button fl-button-lightbox<?php if ('enable' == $settings->icon_animation): ?> fl-button-icon-animation<?php endif; ?>" role="button">
<?php else : ?>
<a href="<?php echo esc_url( do_shortcode( $settings->link ) ); ?>" target="<?php echo esc_attr( $settings->link_target ); ?>" class="<?php echo implode(' ', $classes); ?>" role="button"<?php if ( isset( $settings->link_nofollow ) && 'yes' == $settings->link_nofollow ) echo ' rel="nofollow"'; ?><?php echo $attr; ?>>
<?php endif; ?>
<?php if ( ! empty( $settings->icon ) && ( 'before' == $settings->icon_position || ! isset( $settings->icon_position ) ) ) : ?>
<i class="fl-button-icon fl-button-icon-before fa <?php echo $settings->icon; ?>"></i>
<?php endif; ?>
<?php if ( ! empty( $settings->text ) ) : ?>
<span class="fl-button-text"><?php echo $settings->text; ?></span>
<?php endif; ?>
<?php if ( ! empty( $settings->icon ) && 'after' == $settings->icon_position ) : ?>
<i class="fl-button-icon fl-button-icon-after fa <?php echo $settings->icon; ?>"></i>
<?php endif; ?>
</a>
</div>
<?php if ( $settings->click_action == 'lightbox' && $settings->lightbox_content_type == 'html' && isset($settings->lightbox_content_html) ) : ?>
<div class="fl-node-<?php echo $id; ?> fl-button-lightbox-content mfp-hide">
<?php echo $settings->lightbox_content_html; ?>
</div>
<?php endif; ?>