Lines Matching refs:mdTable
50 $mdTable = array();
54 array_push($mdTable, array_fill(0, $colCount, NULL));
69 parseCell($cell,$mdTable,$rowPos,$colPos);
76 parseCell($cell,$mdTable,$rowPos,$colPos);
86 foreach ($mdTable as $key => $row) {
89 array_walk($mdTable[$key], "cleanCell");
92 return $mdTable;
106 function parseCell(&$cell,&$mdTable,&$rowPos,&$colPos) { argument
111 while (isset($mdTable[$rowPos][$colPos])) {
115 $mdTable[$rowPos][$colPos] = $cell->plaintext;
120 … $mdTable[$rowPos+$i][$colPos] = ($repeatContentIntoSpannedCells ? $cell->plaintext : "");
129 … $mdTable[$rowPos][$colPos] = ($repeatContentIntoSpannedCells ? $cell->plaintext : "");