| 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-ultimate-addon/modules/ribbon/includes/ |
Upload File : |
<?php
/**
* This file should be used to render each module instance.
* You have access to two variables in this file:
*
* $module An instance of your module class.
* $settings The module's settings.
*
* @package UABB Ribbon Module
*/
?>
<div class="uabb-ribbon-wrap">
<<?php echo esc_attr( $settings->text_tag_selection ); ?> class="uabb-ribbon">
<span class="uabb-left-ribb flips"><i class="<?php echo esc_attr( $settings->left_icon ); ?>"></i></span>
<span class="uabb-ribbon-text">
<?php
if ( 'yes' === $settings->stitching ) {
?>
<div class="uabb-ribbon-stitches-top"></div> <?php } ?>
<span class="uabb-ribbon-text-title"><?php echo $settings->title; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></span>
<?php
if ( 'yes' === $settings->stitching ) {
?>
<div class="uabb-ribbon-stitches-bottom"></div> <?php } ?>
</span>
<span class="uabb-right-ribb flips"><i class="<?php echo esc_attr( $settings->right_icon ); ?>"></i></span>
</<?php echo esc_attr( $settings->text_tag_selection ); ?>>
</div>