| Current Path : /home/juvelize/saulnois/tmp/install_695d2cf0b4957/src/View/Sky/ |
| Current File : /home/juvelize/saulnois/tmp/install_695d2cf0b4957/src/View/Sky/Clients.php |
<?php
/*
* @package Tech Fry Library
* @license https://www.gnu.org/licenses/gpl-3.0.en.html
*/
namespace TechFry\Library\View\Sky;
defined('_JEXEC') or die;
class Clients extends Bootstrap
{
public function display()
{
// Image, Title, Subtitle, Description, Button
$output = '<div class="d-flex justify-content-between">';
foreach ($this->data as $item)
{
$output .= $this->html->img($item['image'], array('class' => $this->config['image_class'], 'title' => $item['title']));
}
$output .= '</div>';
return $output;
}
}