forked from qwerty/milfs
MD en campo limitado
This commit is contained in:
parent
b0195711df
commit
00c726b3cf
@ -2496,7 +2496,7 @@ if ($tipo == "html"){
|
||||
}
|
||||
|
||||
$resultado="
|
||||
<table class='table table-striped table_json_render' id='tabla_$control' >
|
||||
<table class='table table-striped table_json_render table-bordered' id='tabla_$control' >
|
||||
<tr class='tr_json_render_titulos'><th>$campo_nombre[0]</th></tr>
|
||||
$linea
|
||||
</table>
|
||||
@ -13654,7 +13654,9 @@ if (mysqli_num_rows($sql)!='0'){
|
||||
$contenido = $contenido[3];
|
||||
|
||||
|
||||
|
||||
$campo_nombre = remplacetas('form_campos','id',$row['id_campo'],'campo_nombre','');
|
||||
if($campo_tipo=='20'){ $campo_nombre[0] = "";}
|
||||
$nombre[$row['id_campo']] = $campo_nombre[0] ;
|
||||
|
||||
|
||||
if($campo_tipo =='15' AND $tipo==""){
|
||||
@ -13716,7 +13718,8 @@ if (mysqli_num_rows($sql)!='0'){
|
||||
elseif($campo_tipo=='30' or $campo_tipo=='24'){
|
||||
$contenido_full = json_render("$contenido","csv","$control");
|
||||
$valor_actual = json_render("$contenido","html","$control");
|
||||
$contenido = "$valor_actual";}
|
||||
$contenido = "$valor_actual";
|
||||
$campo_nombre[0] ="";}
|
||||
elseif($campo_tipo =='31'){
|
||||
if($multiple=="1") {
|
||||
/* foreach ($contenido[9] as $id_campo => $valor) {
|
||||
@ -13735,7 +13738,8 @@ if (mysqli_num_rows($sql)!='0'){
|
||||
elseif($campo_tipo=='24' ){
|
||||
$contenido_full = json_render("$contenido","csv","$control");
|
||||
$valor_actual = json_render("$contenido","html","$control");
|
||||
$contenido = "$valor_actual";}
|
||||
$contenido = "$valor_actual";
|
||||
$campo_nombre[0] ="";}
|
||||
elseif($campo_tipo=='34') {
|
||||
if($contenido !=""){
|
||||
$contenido = stripslashes($contenido);
|
||||
@ -13761,15 +13765,13 @@ if (mysqli_num_rows($sql)!='0'){
|
||||
<iframe width='100%' height='100%' class= 'iframe-media' src=\"$contenido\" frameborder='0' allowFullScreen ></iframe>";
|
||||
}
|
||||
}
|
||||
elseif($campo_tipo=='2' AND $contenido !=""){
|
||||
elseif(($campo_tipo=='2' or $campo_tipo =='17') AND $contenido !=""){
|
||||
//$contenido= nl2br("$contenido");
|
||||
//$contenido = Markdown($contenido);
|
||||
//$contenido= nl2br("$contenido");
|
||||
$contenido = stripslashes("$contenido");
|
||||
$contenido = preg_replace('/<br\s?\/?>/i', "\r\n", "$contenido");
|
||||
$Parsedown = new Parsedown();
|
||||
//$Parsedown->setMarkupEscaped(true);
|
||||
|
||||
$contenido = $Parsedown->text("$contenido");
|
||||
//$contenido= $contenido_original;
|
||||
|
||||
@ -13791,10 +13793,8 @@ if (mysqli_num_rows($sql)!='0'){
|
||||
|
||||
|
||||
//////}
|
||||
|
||||
$campo_nombre = remplacetas('form_campos','id',$row['id_campo'],'campo_nombre','');
|
||||
if($campo_tipo=='20'){ $campo_nombre[0] = "";}
|
||||
$nombre[$row['id_campo']] = $campo_nombre[0] ;
|
||||
if($campo_nombre[0] !=""){ $campo_nombre[0] = "$campo_nombre[0] :";}
|
||||
|
||||
////buscar campo imagen
|
||||
$campo_imagen = buscar_campo_tipo($id,"15");
|
||||
//$campo_imagen_nombre = $campo_imagen[1];
|
||||
@ -13865,8 +13865,8 @@ if($contenido_original !="") {
|
||||
$resultado .= "
|
||||
<div id='contenedor_$row[id_campo]' class=' contenedor_campo '>
|
||||
<pdata-toc-skip class='campo_contenido tipo_$campo_tipo' id='contenido_$row[id_campo]'>
|
||||
<span type= '$campo_tipo' class=' campo_titulo campo_nombre' id='nombre_$row[id_campo]'>$campo_nombre[0]:</span><br>
|
||||
<span class='contenido_item '><strong>$contenido</strong>
|
||||
<label type= '$campo_tipo' class=' campo_titulo campo_nombre' id='nombre_$row[id_campo]'>$campo_nombre[0]</label>
|
||||
<span class='contenido_item '>$contenido
|
||||
<span class=' pull-right'> $metadatos </span>
|
||||
|
||||
</div>";
|
||||
|
Loading…
Reference in New Issue
Block a user