- Ticket 1166 -> Orden de los idiomas ES FR EN RU git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@2 c22fe52d-42d7-ba4f-95f7-33effcf65713
16 lines
622 B
PHP
16 lines
622 B
PHP
<?php
|
|
$res = '[raw]<span class="image_styled'.($align?' align'.$align:'').'" '.((strpos($link_class, 'partner') === false)?'style="width:'.$width.'px;'.((empty($height))?'':'height:'.$height.'px').'"':'').'>';
|
|
if(!empty($link)) {
|
|
$res .= '<a'.($group?' rel="'.$group.'"':'').' class="'.$link_class.' thumbnail image_size_'.$size.$no_link.($lightbox =='true'?' lightbox':' no-lightbox').'" title="'.$title.'" href="'.$link.'">' ;
|
|
}
|
|
$res .= $image;
|
|
if(!empty($link)) {
|
|
$res .= '</a>';
|
|
}
|
|
if($underline == 'true') {
|
|
$res .= '<div class="shadow"></div>';
|
|
}
|
|
$res .= '</span>[/raw]';
|
|
|
|
echo $res;
|