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;
|