forked from qwerty/tupali
restriccio a 5MB de subida de archivos
This commit is contained in:
parent
8239af09d3
commit
320c3a8c2e
90
mapero.php
90
mapero.php
@ -38,6 +38,8 @@ $plantilla ="mapa";
|
||||
<link rel="stylesheet" href="librerias/leaflet/leaflet-search.css"/>
|
||||
<script src="librerias/leaflet/leaflet.js"></script>
|
||||
<script src="librerias/jquery/jquery-2.1.4.min.js"></script>
|
||||
<script src="milfs/js/scripts.js"></script>
|
||||
<script src="./librerias/bootstrap/js/bootstrap.min.js" ></script>
|
||||
<script src="librerias/leaflet/leaflet-providers.js"></script>
|
||||
<script src="librerias/leaflet/leaflet-search.js"></script>
|
||||
<link rel="stylesheet" type="text/css" media="screen" href="milfs/css/bootstrap.css">
|
||||
@ -156,15 +158,25 @@ $ids = json_decode($otro_json[0]);
|
||||
|
||||
}
|
||||
|
||||
|
||||
<!-- ESTILOS PRIORITARIOS -->
|
||||
.modal-dialog {
|
||||
width: 70%;
|
||||
height: 50%;
|
||||
width: 95% !important;
|
||||
height: auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.modal-lg {
|
||||
width: 95% !important;
|
||||
height: auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
height: 50%;
|
||||
height: auto;
|
||||
}
|
||||
.modal-body {
|
||||
max-height: calc(100vh - 100px);
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
@ -197,6 +209,28 @@ $ids = json_decode($otro_json[0]);
|
||||
echo $css_adicional; ?>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Modal -->
|
||||
<div class='modal fade ' id='muestraInfo' tabindex='-1' role='dialog' aria-labelledby='myModalLabel' aria-hidden='true'>
|
||||
<div class='modal-dialog modal-lg' >
|
||||
<div class='modal-content'>
|
||||
<div class='modal-header' >
|
||||
<button type='button' class='close' data-dismiss='modal' aria-hidden='true'><i class='fa fa-times-circle'></i></button>
|
||||
<h4 class='modal-title' id='myModalLabel_info'><div id='titulo_modal'></div></h4>
|
||||
</div>
|
||||
<div class='modal-body'>
|
||||
|
||||
<div id='muestra_form'>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class='modal-footer' id='pie_modal'>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Modal -->
|
||||
<!--nav sidebar -->
|
||||
<aside>
|
||||
<nav class="navbar navbar-inverse sidebar navbar-fixed-top" role="navigation">
|
||||
@ -356,29 +390,33 @@ onEachFeature: function(feature, layer) {
|
||||
|
||||
layer.bindPopup(popupText); }
|
||||
});
|
||||
|
||||
/*
|
||||
var geojsonAux = L.geoJson(geojsonAuxiliar, {
|
||||
|
||||
pointToLayer: function(feature, latlng) {
|
||||
var smallIcon = new L.Icon({
|
||||
iconSize: [60, 60],
|
||||
iconAnchor: [13, 27],
|
||||
popupAnchor: [1, -24],
|
||||
|
||||
iconUrl: "http://localhost/default/tupali/milfs/images/secure/?file=150/da6d16547658ebc06c5378b30d1ee4bf.png"
|
||||
|
||||
});
|
||||
return L.marker(latlng, {icon: smallIcon});
|
||||
},
|
||||
|
||||
onEachFeature: function(feature, layer) {
|
||||
var popupText = feature.properties.description
|
||||
var popup = L.popup();
|
||||
|
||||
|
||||
layer.bindPopup(popupText); }
|
||||
});
|
||||
*/
|
||||
function onMapClick(e) {
|
||||
// gib_uni();
|
||||
<?php
|
||||
//establecer_session('geo');
|
||||
$campo_mapa = buscar_campo_tipo($id,"14");
|
||||
$campo_mapa = $campo_mapa[0];
|
||||
?>
|
||||
var z = map.getZoom();
|
||||
var coordenadas = "mapa.php?lat="+e.latlng.lat+"&lon="+e.latlng.lng+"&zoom="+z+"&id=<?php echo $campo_mapa; ?>[0]&exif";
|
||||
xajax_formulario_embebido_ajax("<?php echo $_REQUEST['id'] ?>",'','nuevo');
|
||||
//var mapa = window.document.getElementById('<?php echo $campo_mapa."[0]"; ?>');
|
||||
|
||||
|
||||
// document.getElementById('mapita').contentWindow.document.location.href=coordenadas;
|
||||
|
||||
/// window.parent.document.getElementById('<?php echo $_REQUEST[id]?>')
|
||||
//mapa.value= e.latlng.lng+' '+e.latlng.lat+' '+z;
|
||||
popup .setLatLng(e.latlng) .setContent('You clicked the map at '+coordenadas+' ' + e.latlng.toString()) .openOn(map);
|
||||
window.document.getElementById("titulo_modal").innerHTML = "Paragraph changed!"+coordenadas;
|
||||
document.getElementById('mapita').src=coordenadas;
|
||||
document.getElementById("probador").value = coordenadas;
|
||||
}
|
||||
// map.on('click', onMapClick);
|
||||
|
||||
<?php echo $layer; ?>
|
||||
var markers = L.markerClusterGroup();
|
||||
markers.addLayer(geojson);
|
||||
@ -409,8 +447,10 @@ L.control.zoom({
|
||||
legend.addTo(map);
|
||||
|
||||
|
||||
|
||||
map.addLayer(markers);
|
||||
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
@ -6132,7 +6132,7 @@ return $resultado;
|
||||
|
||||
|
||||
|
||||
function insertar_linea($tabla,$key,$campo,$valor,$control,$orden,$div){
|
||||
function insertar_linea($tabla,$key,$campo,$valor,$control,$orden,$div,$proceso){
|
||||
$respuesta = new xajaxResponse('utf-8');
|
||||
//$key = limpiar_caracteres($key);
|
||||
//$valor = limpiar_caracteres($valor);
|
||||
@ -6144,8 +6144,8 @@ if($_SESSION['id_empresa'] =="") {
|
||||
$ip = " INET_ATON('".$ip."') ";
|
||||
if($tabla =="form_datos") {
|
||||
|
||||
$consulta = "INSERT INTO form_datos ( orden, timestamp,id_usuario,id_empresa,form_id,ip,control,id_campo,contenido) VALUES
|
||||
( '$orden',UNIX_TIMESTAMP(),'$_SESSION[id]','$empresa','$key',$ip ,'$control', '$campo' , '$valor')
|
||||
$consulta = "INSERT INTO form_datos ( proceso,orden, timestamp,id_usuario,id_empresa,form_id,ip,control,id_campo,contenido) VALUES
|
||||
( '$proceso','$orden',UNIX_TIMESTAMP(),'$_SESSION[id]','$empresa','$key',$ip ,'$control', '$campo' , '$valor')
|
||||
";
|
||||
|
||||
}
|
||||
@ -6650,8 +6650,8 @@ elseif($accion=="confirmar") {
|
||||
$validado= md5($email);
|
||||
//$resultado ="$rnncode // $codigo_confirmacion";
|
||||
if($rnncode == $codigo_confirmacion) {
|
||||
$insertar_email = insertar_linea("form_datos","$login_formulario","$login_campo_email","$email",$usuario[0],"","");
|
||||
$insertar_email = insertar_linea("form_datos","$login_formulario","$login_campo_validado","$validado",$usuario[0],"","");
|
||||
$insertar_email = insertar_linea("form_datos","$login_formulario","$login_campo_email","$email",$usuario[0],"","","");
|
||||
$insertar_email = insertar_linea("form_datos","$login_formulario","$login_campo_validado","$validado",$usuario[0],"","","");
|
||||
|
||||
$resultado="Validado $email";
|
||||
}
|
||||
@ -7112,7 +7112,7 @@ elseif ($tipo=='nuevo'){
|
||||
|
||||
}
|
||||
require ("milfs/includes/parametrizacion.php");
|
||||
$insertar_servicio = insertar_linea("form_datos","$login_formulario","$social_login_servicio","$portal_sigla",$control,"","");
|
||||
$insertar_servicio = insertar_linea("form_datos","$login_formulario","$social_login_servicio","$portal_sigla",$control,"","","");
|
||||
$resultado ="<div class='alert alert-success'>Gracias por registrarse, por favor ingrese con los nuevos datos. </div>";
|
||||
$respuesta->addAssign("formulario_session","innerHTML","$resultado");
|
||||
return $respuesta;
|
||||
@ -9747,6 +9747,39 @@ if($div !='') {
|
||||
$xajax->registerFunction("insertar_campo_area");
|
||||
|
||||
|
||||
function update_campo($tabla,$key,$campo,$valor,$accion,$div,$indice,$onchange){
|
||||
|
||||
|
||||
$link=Conectarse();
|
||||
mysqli_set_charset($link, "utf8");
|
||||
|
||||
|
||||
if($accion== "grabar"){
|
||||
|
||||
$edit = "UPDATE $tabla SET $campo = '".mysqli_real_escape_string($link,$valor)."' WHERE $indice = '$key' limit 1; ";
|
||||
$sql=mysqli_query($link,$edit);
|
||||
if(mysqli_affected_rows($link) != 0){
|
||||
|
||||
}
|
||||
// $campo = editar_campo("$tabla","$key","$campo","$valor","","","$indice");
|
||||
|
||||
$respuesta = new xajaxResponse('utf-8');
|
||||
$respuesta->addScript("javascript:location.reload(true);");;
|
||||
// $respuesta->addAssign($div,"innerHTML",$edit);
|
||||
//$respuesta->addScript("$onchange");
|
||||
return $respuesta;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
$xajax->registerFunction("update_campo");
|
||||
|
||||
|
||||
|
||||
function editar_campo($tabla,$key,$campo,$valor,$accion,$div,$indice){
|
||||
//Definicion de variables
|
||||
//$accion = "";
|
||||
@ -12448,7 +12481,7 @@ $resultado = "
|
||||
|
||||
<div class='row '>
|
||||
<div class='col-xs-4'>
|
||||
<input calss='form-control' value='' type='file' id='$campo-$item' name='$campo-$item' class='rm-input'
|
||||
<input class='form-control' value='' type='file' id='$campo-$item' name='$campo-$item' class='rm-input'
|
||||
onchange=\"selectedFile($campo,$item);uploadFile($campo,$item); \"
|
||||
onclick=\"document.getElementById('progressBar_').value='0'; document.getElementById('image_preview_$name').src = '';
|
||||
document.getElementById('alert_$name').className = 'alert alert-info';
|
||||
@ -12459,7 +12492,7 @@ $resultado = "
|
||||
<div class='col-xs-4'>
|
||||
<img id='image_preview_$name' style='max-width:200px;' alt='' /><div id= div_preview_$name></div>
|
||||
</div>
|
||||
<div class='col-xs-4'>
|
||||
<div class='col-xs-4' id=''>
|
||||
<div id='fileSize_$name'></div><div id='fileType_$name'></div><div id='fileName_$name'></div><div id='percentageCalc_$name'></div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -13,6 +13,11 @@
|
||||
fileSize = (Math.round(file.size * 100 / 1048576) / 100).toString() + ' MB';
|
||||
else
|
||||
fileSize = (Math.round(file.size * 100 / 1024) / 100).toString() + ' Kb';
|
||||
if (file.size > 5242880) {
|
||||
alert("El archivo no debe exceder 5MB");
|
||||
document.getElementById("div_preview_"+nombre).innerHTML = "<div class='alert alert-danger'><h1>Archivo no valido<small> " + file.name+"</small></h1></div>";
|
||||
/// xmlHTTP.addEventListener("error", uploadFailed, false);
|
||||
}else{
|
||||
|
||||
var divfileSize = document.getElementById('fileSize_'+nombre);
|
||||
var divfileType = document.getElementById('fileType_'+nombre);
|
||||
@ -30,7 +35,7 @@
|
||||
document.getElementById("alert_"+nombre).className = "alert alert-success";
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user