HEX
Server: LiteSpeed
System: Linux altar40.supremepanel40.com 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
User: sescorpcl (4477)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /home/sescorpcl/public_html/wp-content/plugins/bb-booster/modules/gallery/includes/frontend.php
<?php if($settings->layout == 'collage') : ?>
<div class="fl-mosaicflow">
	<div class="fl-mosaicflow-content">
		<?php foreach($module->get_photos() as $photo) : ?>
		<div class="fl-mosaicflow-item">
		<?php 
		
		FLBuilder::render_module_html('photo', array(
			'crop'          => false,
			'link_target'   => '_self',
			'link_type'     => $settings->click_action == 'none' ? '' : 'url',
			'link_url'      => $settings->click_action == 'none' ? '' : $photo->link,
			'photo'         => $photo,
			'photo_src'     => $photo->src,
			'show_caption'  => $settings->show_captions
		)); 
		
		?>
		</div>
		<?php endforeach; ?>
	</div>
	<div class="fl-clear"></div>
</div>
<?php else : ?>
<div class="fl-gallery">
	<?php foreach($module->get_photos() as $photo) : ?>
	<div class="fl-gallery-item">
	<?php 
	
	FLBuilder::render_module_html('photo', array(
		'crop'          => false,
		'link_target'   => '_self',
		'link_type'     => $settings->click_action == 'none' ? '' : 'url',
		'link_url'      => $settings->click_action == 'none' ? '' : $photo->link,
		'photo'         => $photo,
		'photo_src'     => $photo->src,
		'show_caption'  => $settings->show_captions
	)); 
	
	?>
	</div>
	<?php endforeach; ?>
</div>
<?php endif; ?>