Mejoras menores

prueba de css
parent ce564e70
...@@ -247,12 +247,12 @@ class CampaniaApiController extends ApiController { ...@@ -247,12 +247,12 @@ class CampaniaApiController extends ApiController {
reset($contenidosHead); reset($contenidosHead);
if ($key === key($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"); $log->debug("KEY $key | HTML $html");
}else if($key != key($contenidosHead) && $fila != $contenidoHead->getCcoFila()){ }else if($key != key($contenidosHead) && $fila != $contenidoHead->getCcoFila()){
$html = ""; $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"); $log->debug("KEY $key | HTML $html");
}else if($key != key($contenidosHead) && $fila == $contenidoHead->getCcoFila()){ }else if($key != key($contenidosHead) && $fila == $contenidoHead->getCcoFila()){
...@@ -320,12 +320,12 @@ class CampaniaApiController extends ApiController { ...@@ -320,12 +320,12 @@ class CampaniaApiController extends ApiController {
reset($contenidosBody); reset($contenidosBody);
if ($key === key($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"); $log->debug("KEY $key | HTML $html");
}else if($key != key($contenidosBody) && $fila != $contenidoBody->getCcoFila()){ }else if($key != key($contenidosBody) && $fila != $contenidoBody->getCcoFila()){
$html = ""; $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"); $log->debug("KEY $key | HTML $html");
}else if($key != key($contenidosBody) && $fila == $contenidoBody->getCcoFila()){ }else if($key != key($contenidosBody) && $fila == $contenidoBody->getCcoFila()){
...@@ -391,12 +391,12 @@ class CampaniaApiController extends ApiController { ...@@ -391,12 +391,12 @@ class CampaniaApiController extends ApiController {
reset($contenidosFooter); reset($contenidosFooter);
if ($key === key($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"); $log->debug("KEY $key | HTML $html");
}else if($key != key($contenidosFooter) && $fila != $contenidoFooter->getCcoFila()){ }else if($key != key($contenidosFooter) && $fila != $contenidoFooter->getCcoFila()){
$html = ""; $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"); $log->debug("KEY $key | HTML $html");
}else if($key != key($contenidosFooter) && $fila == $contenidoFooter->getCcoFila()){ }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