Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

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