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