Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
use LeadersLinked\Library\Functions;
3
 
4
$this->inlineScript()->captureStart();
5
echo <<<JS
6
jQuery( document ).ready(function( $ ) {
7
    $('#suggestions-similar-groups').mCustomScrollbar({
8
        setHeight: '450px',
9
        axis:'y' // vertical and horizontal scrollbar
10
    });
11
});
12
JS;
13
$this->inlineScript()->captureEnd();
14
 
15
?>
16
 
17
 
18
<div class="widget suggestions full-width" id="suggestions-similar-groups">
19
	<div class="sd-title">
20
		<h3>LABEL_SIMILAR_GROUPS</h3>
21
	</div><!--sd-title end-->
22
	<?php foreach($items as $item) :  ?>
23
	<div class="suggestion-usd">
24
		<img style="width: 50px; height: auto" src="<?php echo $this->url('storage', ['type' => 'group', 'code' => $item['uuid'], 'filename' => $item['image']])?>" alt="">
25
		<div class="sgt-text">
26
			<h4><?php echo $item['name'] ?></h4>
27
		</div>
28
		<span><a href="<?php echo $this->url('group/view', ['id' => $item['uuid'] ])?>"><i class="la la-external-link"></i></a></span>
29
	</div>
30
	<?php endforeach; ?>
31
</div>
32