AutorÃa | Ultima modificación | Ver Log |
<?php
use LeadersLinked\Library\Functions;
$this->inlineScript()->captureStart();
echo <<<JS
jQuery( document ).ready(function( $ ) {
$('#suggestions-list-people-you-may-know').mCustomScrollbar({
setHeight: '450px',
axis:'y' // vertical and horizontal scrollbar
});
});
JS;
$this->inlineScript()->captureEnd();
?>
<div class="suggestions full-width" id="suggestions-list-people-you-may-know">
<div class="sd-title">
<h3>LABEL_PEOPLE_YOU_MAY_KNOW</h3>
</div><!--sd-title end-->
<div class="suggestions-list">
<?php if($items ) : ?>
<?php foreach($items as $item) : ?>
<div class="suggestion-usd">
<img style="width: 50px; height: auto" src="<?php echo $this->url('storage', ['type' => 'user', 'code' => $item['uuid'], 'filename' => $item['image']])?>" alt="">
<div class="sgt-text">
<h4><?php echo trim($item['first_name'] . ' ' . $item['last_name']) ?></h4>
</div>
<span>
<a href="<?php echo $this->url('profile/view', ['id' => $item['uuid'] ]) ?>">
<i class="fa fa-external-link"></i>
</a>
</span>
</div>
<?php endforeach; ?>
<div class="view-more">
<a href="<?php echo $this->url('connection/people-you-may-know')?>" title="">LABEL_VIEW_MORE</a>
</div>
<?php else: ?>
<div class="view-more">
Sin sugerencias
</div>
<?php endif; ?>
</div><!--suggestions-list end-->
</div><!--suggestions end-->