defined('_JEXEC') or die;
$images = ModElmasAlbumsHelper::getImages($params);
$col1 = 0;
$col2 = 0;
$col3 = 0;
$colhtml1 = '';
$colhtml2 = '';
$colhtml3 = '';
$xx = 0;
foreach ($images as $image)
{
list($width, $height, $type, $attr) = getimagesize($image[0]);
$html = '';
$xx++;
if($col1 > $col2)
{
if($col2 > $col3)
{
$colhtml3 .= $html;
$col3 = $col3 + $height + 10;
}
else
{
$colhtml2 .= $html;
$col2 = $col2 + $height + 10;
}
}
else
{
$colhtml1 .= $html;
$col1 = $col1 + $height + 10;
}
}
?>