| Server IP : 69.39.225.240 / Your IP : 216.73.216.138 Web Server : Apache System : Linux bronze7.serverhost.net 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : reademotions ( 1074) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/reademotions/www/wp-content/plugins/bb-plugin/modules/button/includes/ |
Upload File : |
<?php
$button_node_id = "fl-node-$id";
if ( isset( $settings->id ) && ! empty( $settings->id ) ) {
$button_node_id = $settings->id;
}
?>
<div class="<?php echo $module->get_classname(); ?>">
<?php if ( isset( $settings->click_action ) && 'lightbox' == $settings->click_action ) : ?>
<a href="<?php echo 'video' == $settings->lightbox_content_type ? $settings->lightbox_video_link : '#'; ?>" class="fl-button <?php echo $button_node_id; ?> fl-button-lightbox<?php echo ( 'enable' == $settings->icon_animation ) ? ' fl-button-icon-animation' : ''; ?>" role="button">
<?php else : ?>
<a href="<?php echo $settings->link; ?>"<?php echo ( isset( $settings->link_download ) && 'yes' === $settings->link_download ) ? ' download' : ''; ?> target="<?php echo $settings->link_target; ?>" class="fl-button<?php echo ( 'enable' == $settings->icon_animation ) ? ' fl-button-icon-animation' : ''; ?>" role="button"<?php echo $module->get_rel(); ?>>
<?php endif; ?>
<?php
if ( ! empty( $settings->icon ) && ( 'before' == $settings->icon_position || ! isset( $settings->icon_position ) ) ) :
?>
<i class="fl-button-icon fl-button-icon-before <?php echo $settings->icon; ?>" aria-hidden="true"></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 <?php echo $settings->icon; ?>" aria-hidden="true"></i>
<?php endif; ?>
</a>
</div>
<?php if ( 'lightbox' == $settings->click_action && 'html' == $settings->lightbox_content_type && isset( $settings->lightbox_content_html ) ) : ?>
<div class="<?php echo $button_node_id; ?> fl-button-lightbox-content mfp-hide">
<?php echo $settings->lightbox_content_html; ?>
</div>
<?php endif; ?>