Files
dev.ttsby.com/widgets/bs4-default/mediaset/banner/grid-default/main.php
2023-04-17 11:06:08 +09:00

35 lines
1002 B
PHP

<?php
$_mediasetque = 'site='.$s.' and category="'.$wdgvar['category'].'"';
$_RCD=getDbArray($table['s_upload'],$_mediasetque,'*','pid','asc',$wdgvar['limit'],1);
?>
<section class="widget mb-3 ">
<div class="<?php echo $wdgvar['container']?$wdgvar['container']:$d['layout']['home_container'] ?>">
<div class="py-5">
<?php if ($wdgvar['show_header']=='show'): ?>
<header>
<h5 class="widget-title text-center mb-4">
<?php echo $wdgvar['title'] ?>
</h5>
</header>
<?php endif; ?>
<div class="row gutter-half">
<?php $i=0;foreach($_RCD as $_R):?>
<div class="<?php echo $wdgvar['line'] ?>">
<a href="<?php echo $_R['linkurl']?$_R['linkurl']:'#' ?>" target="<?php echo $wdgvar['linktarget'] ?>">
<img src="<?php echo $_R['src'] ?>" class="img-fluid" alt="">
</a>
</div>
<?php $i++;endforeach?>
</div>
</div>
</div>
</section>