';
$image = Uri::base() . $imagepath;
$svg = '
';
if ($button) :
if ($imagebutton && $imagepath) :
$button = '
';
elseif ($button_text != vmText::_ ('MOD_VIRTUEMART_SEARCH_GO')) :
$button = '
';
else :
$button = '
';
endif;
switch ($button_pos) :
case 'right' :
$output = $output.$button;
break;
case 'left' :
$output = $button.$output;
break;
default :
$output = $output.$button;
break;
endswitch;
endif;
echo $output;
?>