Lines Matching refs:col
156 for ($col = 0; $col < $cols; $col++) {
157 $len = $this->strWidth($data[$row][$col]);
160 if (isset($meta[$row][$col]['align']) && $meta[$row][$col]['align'] == 'center') {
167 $meta[$row][$col]['length'] = $len;
169 if ($len > $colmax[$col]) $colmax[$col] = $len;
175 for ($col = 0; $col < $cols; $col++) {
178 if (isset($meta[$row][$col]['align']) && $meta[$row][$col]['align'] == 'center') {
181 … } elseif (isset($meta[$row][$col]['align']) && $meta[$row][$col]['align'] == 'right') {
190 $target = $colmax[$col];
193 for ($i = 1; $i < $meta[$row][$col]['colspan']; $i++) {
194 $target += $colmax[$col + $i];
198 if ($meta[$row][$col]['colspan'] > 1) {
199 for ($i = 1; $i < $meta[$row][$col]['rowspan']; $i++) {
200 $meta[$row + $i][$col]['colspan'] = $meta[$row][$col]['colspan'];
205 $length = $meta[$row][$col]['length'];
209 if (isset($meta[$row][$col]['align']) && $meta[$row][$col]['align'] == 'right') {
216 $cdata = $data[$row][$col];
217 if (!(isset($meta[$row][$col]['hide']) && $meta[$row][$col]['hide']) || $cdata) {
222 … $last = (isset($meta[$row][$col]['tag']) && $meta[$row][$col]['tag'] == 'th') ? '^' : '|';