| 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/photo/includes/ |
Upload File : |
<?php $photo = $module->get_data(); $classes = $module->get_classes(); $src = $module->get_src(); $link = $module->get_link(); $alt = $module->get_alt(); $attrs = $module->get_attributes(); $filetype = pathinfo( $src, PATHINFO_EXTENSION ); $rel = $module->get_rel(); $caption = $module->get_caption(); ?> <div class="fl-photo<?php echo ( ! empty( $settings->crop ) ) ? ' fl-photo-crop-' . $settings->crop : ''; ?> fl-photo-align-<?php echo $settings->align; ?>"<?php FLBuilder::print_schema( ' itemscope itemtype="https://schema.org/ImageObject"' ); ?>> <div class="fl-photo-content fl-photo-img-<?php echo $filetype; ?>"> <?php if ( ! empty( $link ) ) : ?> <a href="<?php echo $link; ?>" target="<?php echo $settings->link_url_target; ?>"<?php echo $rel; ?> itemprop="url"> <?php endif; ?> <img class="<?php echo $classes; ?>" src="<?php echo $src; ?>" alt="<?php echo $alt; ?>" itemprop="image" <?php echo $attrs; ?> /> <?php if ( ! empty( $link ) ) : ?> </a> <?php endif; ?> <?php if ( 'hover' === $settings->show_caption ) : ?> <div class="fl-photo-caption fl-photo-caption-hover" itemprop="caption"><?php echo $caption; ?></div> <?php endif; ?> </div> <?php if ( 'below' === $settings->show_caption ) : ?> <div class="fl-photo-caption fl-photo-caption-below" itemprop="caption"><?php echo $caption; ?></div> <?php endif; ?> </div>