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-list-company-followers').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="suggestions full-width" id="suggestions-list-company-followers">
19
	<div class="sd-title">
20
		<h3>LABEL_FOLLOWERS</h3>
21
	</div><!--sd-title end-->
22
	<div class="suggestions-list">
23
		<?php if($items) :  ?>
24
		<?php foreach($items as $item) :  ?>
25
		<div class="suggestion-usd">
26
			<img style="width: 50px; height: auto" src="<?php echo $this->url('storage', ['type' => 'user', 'code' => $item['uuid'], 'filename' => $item['image']])?>" alt="">
27
			<div class="sgt-text">
28
				<h4><?php echo trim($item['first_name'] . ' ' . $item['last_name']) ?></h4>
29
			</div>
30
			<span>
31
				<a href="<?php echo $this->url('profile/view', ['id' => $item['uuid'] ]) ?>">
32
					<i class="fa fa-external-link"></i>
33
				</a>
34
			</span>
35
		</div>
36
		<?php endforeach; ?>
37
		<?php else: ?>
38
		<div class="view-more">
39
			No hay seguidores
40
		</div>
41
		<?php endif; ?>
42
	</div><!--suggestions-list end-->
43
</div><!--suggestions end-->