Commit 3b83c57a authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

On retire les infos de débug

parent 2a8de18b
Loading
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -79,8 +79,8 @@ class Sheet
        $cells = $rowNode->childNodes;
        $col   = 1;

        echo '<h2>ROW ' . $row . '</h2>';
        xmlDump($rowNode);
        //echo '<h2>ROW ' . $row . '</h2>';
        //xmlDump($rowNode);
        foreach ($cells as $c) {
            if ('table:covered-table-cell' == $c->tagName) {
                $covered = (int)$c->attributes->getNamedItem('number-columns-repeated')?->value ?: 1;
@@ -104,12 +104,12 @@ class Sheet
                    }
                }

                var_dump([
                    'col'     => $col,
                    'value'   => $cell->getContent(),
                    'colSpan' => $colSpan,
                    'rowSpan' => $rowSpan,
                ]);
                //var_dump([
                //    'col'     => $col,
                //    'value'   => $cell->getContent(),
                //    'colSpan' => $colSpan,
                //    'rowSpan' => $rowSpan,
                //]);

                $col ++;
            }