Update manage_promotions.php

This commit is contained in:
marian1010 2021-05-06 09:52:59 +02:00
parent 8408636fa5
commit 62fec4883d

View File

@ -18,6 +18,7 @@
$codes = array(); $codes = array();
$actives = array(); $actives = array();
if(is_array($promos)){
foreach($promos as $key => $value){ foreach($promos as $key => $value){
$ids[$key] = $value->getId(); $ids[$key] = $value->getId();
$tittles[$key] = $value->getTittle(); $tittles[$key] = $value->getTittle();
@ -25,7 +26,7 @@
$codes[$key] = $value->getCode(); $codes[$key] = $value->getCode();
$actives[$key] = $value->getActive(); $actives[$key] = $value->getActive();
} }
}
echo "<div class='row'> echo "<div class='row'>
<div class='column side'></div> <div class='column side'></div>
@ -42,6 +43,7 @@
</thead> </thead>
<tbody> <tbody>
"; ";
if(is_array($promos)){
for($i = 0; $i < count($promos); $i++){ for($i = 0; $i < count($promos); $i++){
echo '<tr> echo '<tr>
<td>'. $ids[$i] .'</td> <td>'. $ids[$i] .'</td>
@ -72,6 +74,7 @@
</tr> </tr>
'; ';
} }
}
echo'</tbody> echo'</tbody>
</table> </table>
</div> </div>