git-svn-id: https://192.168.0.254/svn/Proyectos.ClaveAudio_Web/trunk@16 44ade383-bb54-5b4f-835b-923f7702b206
58 lines
2.2 KiB
PHP
58 lines
2.2 KiB
PHP
<div class="destacado">
|
|
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td width="247"><img src="_imgs/d.gif" width="247" height="1" alt=""></td>
|
|
<td width="12"><img src="_imgs/d.gif" width="12" height="1" alt=""></td>
|
|
<td width="279"><img src="_imgs/d.gif" width="279" height="1" alt=""></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td width="247" align="center" valign="middle">
|
|
|
|
<div class="destacado_foto">
|
|
<?php
|
|
//SI TIENE PDF la imagen irá al pdf si no a la ficha
|
|
$path_pdf = '_ofr/' . $arrayOferta['id'] . '.pdf';
|
|
$path_jpg = '_ofr/' . $arrayOferta['id'] . '_247.jpg';
|
|
if (!file_exists($path_pdf))
|
|
$path_pdf = "";
|
|
if (!file_exists($path_jpg))
|
|
$path_jpg = "";
|
|
|
|
if ($path_pdf != "") {
|
|
$enlace = $path_pdf;
|
|
}
|
|
else
|
|
$enlace = "oferta_ficha.php?id=". $arrayOferta['id'];
|
|
?>
|
|
|
|
<a href="<?php echo $enlace; ?>">
|
|
<?php
|
|
if ($path_jpg != "") {
|
|
?>
|
|
<img src="<?php echo $path_jpg; ?>" border="0">
|
|
<?php } ?>
|
|
</a>
|
|
</div>
|
|
</td>
|
|
|
|
<td width="12"><img src="_imgs/d.gif" width="12" alt=""></td>
|
|
|
|
<td width="279" valign="top">
|
|
<div class="tit azul"><a href="oferta_ficha.php?id=<?php echo $arrayOferta['id']; ?>" class="lmod"><?php echo $arrayOferta['nombre']; ?></a></div>
|
|
|
|
<?php $longitud=150;
|
|
if (($arrayOferta['pvp']=="") || ($arrayOferta['pvp']==0)) {
|
|
$longitud=200;
|
|
}
|
|
else {?>
|
|
<div class="oferta_precio"><?php echo ($arrayOferta['pvp'] == '-1' ? 'Consultar' : miNumberFormat($arrayOferta['pvp']) . '<span class="euro">€</span>'); ?></div>
|
|
<?php } ?>
|
|
<div class="oferta_texto"><?php if(strlen($arrayOferta['descripcion'])) { echo substr($arrayOferta['descripcion'], 0, $longitud); } ?><a href="oferta_ficha.php?id=<?php echo $arrayOferta['id']; ?>" class="mas">[+]</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
</table>
|
|
</div>
|