Lines Matching refs:this

38         return json_encode($this->tdata);
47 return json_encode($this->tmeta);
61 $this->current_row++;
62 $this->current_col = 0;
67 ksort($this->tdata[$this->current_row]);
68 ksort($this->tmeta[$this->current_row]);
72 $this->_tablefield_open('th', $colspan, $align, $rowspan);
76 $this->_tablefield_close();
80 $this->_tablefield_open('td', $colspan, $align, $rowspan);
84 $this->_tablefield_close();
97 while(isset($this->tmeta[$this->current_row][$this->current_col])) {
98 $this->current_col++;
102 $this->tmetacell = array();
103 $this->tmetacell['tag'] = $tag;
104 $this->tmetacell['colspan'] = $colspan;
105 $this->tmetacell['rowspan'] = $rowspan;
106 $this->tmetacell['align'] = $align;
109 $this->doc = '';
117 $row = $this->current_row;
118 $col = $this->current_col;
120 …$this->tdata[$row][$col] = trim(str_replace("\n", ' ', $this->doc)); // no newlines in table cells!
121 $this->tmeta[$row][$col] = $this->tmetacell; // as remembered in the open call
125 $rowspan = $this->tmetacell['rowspan'];
126 $colspan = $this->tmetacell['colspan'];
130 $this->tmeta[$row][$col + $c]['hide'] = true;
131 $this->tmeta[$row][$col + $c]['rowspan'] = 1;
132 $this->tmeta[$row][$col + $c]['colspan'] = 1;
133 $this->tdata[$row][$col + $c] = '';
137 $this->tmeta[$row + $r][$col + $c]['hide'] = true;
138 $this->tmeta[$row + $r][$col + $c]['rowspan'] = 1;
139 $this->tmeta[$row + $r][$col + $c]['colspan'] = 1;
140 $this->tdata[$row + $r][$col + $c] = '';
146 $this->tmeta[$row + $r][$col]['hide'] = true;
147 $this->tmeta[$row + $r][$col]['rowspan'] = 1;
148 $this->tmeta[$row + $r][$col]['colspan'] = 1;
149 $this->tdata[$row + $r][$col] = ':::';