Mejoras menores

prueba de css
parent ce564e70
......@@ -247,12 +247,12 @@ class CampaniaApiController extends ApiController {
reset($contenidosHead);
if ($key === key($contenidosHead)){
$html = $html."<div id ='".$contenidoHead->getCcoFila()."' class='row'>";
$html = $html."<div id ='fila_head_".$contenidoHead->getCcoFila()."' class='row'>";
$log->debug("KEY $key | HTML $html");
}else if($key != key($contenidosHead) && $fila != $contenidoHead->getCcoFila()){
$html = "";
$html = $html."</div><div id ='".$contenidoHead->getCcoFila()."' class='row'>";
$html = $html."</div><div id ='fila_head_".$contenidoHead->getCcoFila()."' class='row'>";
$log->debug("KEY $key | HTML $html");
}else if($key != key($contenidosHead) && $fila == $contenidoHead->getCcoFila()){
......@@ -320,12 +320,12 @@ class CampaniaApiController extends ApiController {
reset($contenidosBody);
if ($key === key($contenidosBody)){
$html = $html."<div id ='".$contenidoBody->getCcoFila()."' class='row'>";
$html = $html."<div id ='fila_body_".$contenidoBody->getCcoFila()."' class='row'>";
$log->debug("KEY $key | HTML $html");
}else if($key != key($contenidosBody) && $fila != $contenidoBody->getCcoFila()){
$html = "";
$html = $html."</div><div id ='".$contenidoBody->getCcoFila()."' class='row'>";
$html = $html."</div><div id ='fila_body_".$contenidoBody->getCcoFila()."' class='row'>";
$log->debug("KEY $key | HTML $html");
}else if($key != key($contenidosBody) && $fila == $contenidoBody->getCcoFila()){
......@@ -391,12 +391,12 @@ class CampaniaApiController extends ApiController {
reset($contenidosFooter);
if ($key === key($contenidosFooter)){
$html = $html."<div id ='".$contenidoFooter->getCcoFila()."' class='row'>";
$html = $html."<div id ='fila_footer_".$contenidoFooter->getCcoFila()."' class='row'>";
$log->debug("KEY $key | HTML $html");
}else if($key != key($contenidosFooter) && $fila != $contenidoFooter->getCcoFila()){
$html = "";
$html = $html."</div><div id ='".$contenidoFooter->getCcoFila()."' class='row'>";
$html = $html."</div><div id ='fila_footer_".$contenidoFooter->getCcoFila()."' class='row'>";
$log->debug("KEY $key | HTML $html");
}else if($key != key($contenidosFooter) && $fila == $contenidoFooter->getCcoFila()){
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment