Saltar al cotenido Saltar a la navegación Información de contacto

<?
ob_start();
session_start();

global $conexion;
include_once("fileadmin/php/includes/constantes.php");
require('fileadmin/php/includes/idioma.php');
include_once('fileadmin/php/proveedores/Connections/localhost.php');
require_once('fileadmin/php/encryption_class.php');

// Cobj para crear los enlaces
$cobj=t3lib_div::makeInstance('tslib_cObj');

$temp_conf['parameter'] = ID_INICIO;
$lnk_inicio=$cobj->typoLink_URL($temp_conf);

$temp_conf['parameter'] = $GLOBALS["TSFE"]->id;
$lnk_this=$cobj->typoLink_URL($temp_conf);



mysql_select_db(BBDD,$conexion) or header("location: ".$lnk_inicio);

?>

<h1 class="titulo">
<?=$label_condiciones_generales_contratacion?>
</h1>
<?

$intOrdenarPor = $_REQUEST['ordenar'];

$txt_sel="select * from doc_caracter_general where log_deleted='0'";


// Ordenar por:
/*
-1 -> titulo ascendentemente
1 -> titulo descendentemente
-2 -> descripcion ascendentemente
2 -> descripcion descendentemente
*/

switch ($intOrdenarPor)
{
case "-1":
$txt_sel=$txt_sel." order by txt_titulo asc ";
break;
case "1":
$txt_sel=$txt_sel." order by txt_titulo desc";
break;
case "-2":
$txt_sel=$txt_sel." order by txt_descripcion asc ";
break;
case "2":
$txt_sel=$txt_sel." order by txt_descripcion desc";
break;

}


$sel=utf_query($txt_sel, $conexion) or header("location: ".$lnk_inicio);
$int_n=mysql_num_rows($sel);


if ($int_n>0)
{?>
<br />
<form method="post" action="">
<div class="alinear_cuadro_GenContratacion">
<div class="ordenacion">
<label for="ordenar"><?=$label_ordenar_por?></label>
<select name="ordenar" id="ordenar" class="select_ordenar">
<option value=""><?=$label_default?></option>
<option value="-1" <?= ($intOrdenarPor==-1)?'selected="selected"':''?>>
<?=$label_titulo.' '.$label_ascendente?>
</option>
<option value="1" <?= ($intOrdenarPor==1)?'selected="selected"':''?>>
<?=$label_titulo.' '.$label_descendente?>
</option>
<option value="-2" <?= ($intOrdenarPor==-2)?'selected="selected"':''?>>
<?=$label_descripcion.' '.$label_ascendente?>
</option>
<option value="2" <?= ($intOrdenarPor==2)?'selected="selected"':''?>>
<?=$label_descripcion.' '.$label_descendente?>
</option>
</select>
</div>

<!--<input type="submit" name="ir" value="<?=$label_ir?>" class="boton_ir" />-->
<div class="ordenacion2">
<input class="boton_enviar" name="ir" value="<?=$label_ir?>" type="submit">
<input id="ir" class="boton_ir" name="ir" value="<?=$label_ir?>" src="fileadmin/img/<?=$label_ir_img_cgc;?>" title="<?=$label_ir;?>" alt="<?=$label_ir;?>" type="image">
</div>

<div style="clear:both;"></div>


<input type="hidden" name="pagina" value="<?=$nuevaPagina?>" />
<input type="hidden" name="grupo" value="<?=$grupo?>" />
<input type="hidden" name="TXT_REFERENCIA" value="<?=escapaCadenaSQL_2($_REQUEST['TXT_REFERENCIA'])?>" />
<input type="hidden" name="TXT_DESCRIPCION" value="<?=escapaCadenaSQL_2($_REQUEST['TXT_DESCRIPCION'])?>" />
</div>
</form>
<br />

<div class="centrar_form">
<ul class="resultados">

<?php

for($i=0; $i<$int_n; $i++)
{
$resultado=utf_fetch($sel);
$id_doc_general=$resultado['id_doc_general'];

//Encriptar url
$crypt = new encryption_class();
$url_encryptado = $crypt->encrypt(base64_encode($resultado['txt_fichero']));

$_SESSION[substr($url_encryptado, 5)] = $url_encryptado;

if($_REQUEST['L']!=0)
{
$txt_sql="select * from doc_general_traduc where id_doc_general=".
$id_doc_general." and id_idioma=".$_REQUEST['L']." and log_deleted='0' ";
$consulta2=utf_query($txt_sql, $conexion) or header("location: ".$lnk_inicio);
$int_n2=mysql_num_rows($consulta2);

$res=$resultado;
if($int_n2)
$resultado=utf_fetch($consulta2);
if(!$resultado['txt_fichero'])
$resultado['txt_fichero'] = $res['txt_fichero'];
}//if


if($i%2==0)
{
$clase="class='resultImp'";
$claseBoton="class='resultEnlImp'";
}
else
{
$clase="class='resultPar'";
$claseBoton="class='resultEnlPar'";
}


$array_fichero=explode("-",$resultado['txt_fichero'] );

$txt_titulo=$resultado['txt_titulo'];
$txt_descripcion = $resultado['txt_descripcion'];

?>

<li class="resultado_proveedores">
<strong class="titulo_expediente">
<?
$temp_conf2['parameter'] = ID_DETALLE_DOC_GEN_CON;
$temp_conf2['additionalParams'].= '&url='.$resultado['txt_fichero'].'&id_doc_general='.$resultado['id_doc_general'];
echo $cobj->typolink($txt_titulo,$temp_conf2);
?>
</strong><br />
<div class="resultado_titulo_adjudicadas">
<? if (strlen($txt_descripcion)>40) {

echo substr($txt_descripcion,0,40)." ..."; }

else{

echo $txt_descripcion;

} ?>
</div>
<div class="resultado_guardar">
<a title="<?=$label_guardar?>" alt="<?=$label_guardar?>" href='fileadmin/php/proveedores/menusProveedores/descarga2.php?url=<?=urlencode($url_encryptado)?>'>
<img src="fileadmin/img/<?=$label_buscar_img_cgc;?>" class="noborder" title="<?=$label_guardar?>" alt="<?=$label_guardar?>" />
</a>
</div>
<div class="fin_resultado">
<hr class="hr_resultado" />
</div>
</li>

<? }
?></ul>
</div>
<?
}
else
{
?>
<br />
<div class="cuadro_error">
<div class="mensaje_error">
<?=$label_no_hay_documentos?></div>
</div>
<? }

mysql_close($conexion);

?>
<br />
<div class="volver_expedientes">
<?
$temp_conf['parameter'] = ID_USUARIOS;
echo $cobj->typolink('<img src="fileadmin/img/volver.gif" class="flecha_volver">',$temp_conf);
echo $cobj->typolink($label_volver,$temp_conf);
?>
</div>

<?php
$content = utf8_encode(ob_get_contents());
ob_end_clean();
?>