Lines Matching refs:this

49       $this->Lexer->addEntryPattern('<sqlraw [^>]*>',$mode,'plugin_sqlraw');
53 $this->Lexer->addExitPattern('</sqlraw>','plugin_sqlraw');
62 $link = $this->_propertyRaw('link',$match);
63 $startMarker = $this->_propertyRaw('startMarker',$match);
64 $tableNumber = $this->_propertyRaw('tableNumber',$match);
65 $display = $this->_propertyRaw('display', $match);
66 $position = $this->_propertyRaw('position', $match);
67 $tableid = $this->_propertyRaw('id', $match);
68 $class = $this->_propertyRaw('class', $match);
69 $title = $this->_propertyRaw('title', $match);
70 $source = $this->_propertyRaw('source', $match);
71 $caption = $this->_propertyRaw('caption', $match);
72 $fixTable = $this->_propertyRaw('fixTable', $match);
83 $this->display_inline = FALSE;
84 $this->vertical_position = FALSE;
85 $this->table_class = 'inline';
86 $this->source = '';
87 $this->startMarker = '';
88 $this->tableNumber = 1;
108 $this->tableId = $data['id'];
110 $this->source = $data['source'];
112 $this->startMarker = $data['startMarker'];
114 $this->tableNumber = $data['tableNumber'];
116 $this->tableNumber = 1;
118 $this->table_class = $data['class'];
120 $this->title = $data['title'];
122 $this->caption = $data['caption'];
124 $this->caption = 0;
126 $this->fixTable = $data['fixTable'];
128 $this->fixTable = 0;
130 $this->display_inline = TRUE;
132 $this->display_inline = FALSE;
135 $this->vertical_position = TRUE;
137 $this->vertical_position = FALSE;
139 $debugfile = $this->getConf('sqlraw_debugfilepath');
140 $tempdb = $this->getConf('sqlraw_tempdb');
154 array_push($this->databases, $db);
159 $this->datalink = $data['link'];
160 $disallow = $this->getConf('sqlraw_mysqlDisallow');
161 $use = $this->getConf('sqlraw_mysqlReplace');
162 $restrictNames = $this->getConf('sqlraw_restrict_names');
163this->_sqlRaw__handleLink($data['link'], &$renderer, $this->source, $this->startMarker, $this->tab…
168 $db =& array_pop($this->databases);
170 …$success = $this->_sqlRaw__create_temp_db ($db, $theResult['headers'], $theResult['rows'], $theRes…
171 array_push($this->databases, $db);
184 $db =& array_pop($this->databases);
203 if ($this->tableId != ' ') {
204 $id_string = 'id="'.$this->tableId.'" ';
208 if (! $this->vertical_position) {
212 if ($this->display_inline) {
213 … $renderer->doc .= '<table '.$id_string.'class="'.$this->table_class.'" style="display:inline">';
215 $renderer->doc .= '<table '.$id_string.'class="'.$this->table_class.'">';
217 if ($this->title != '')
218 $renderer->doc .= '<caption class="sqlplugin__title">'.$this->title.'</caption><tbody>';
235 if ($this->table_class != "sortable") $count++;
238 $this->_sqlRaw__drop_temp_db ($db, &$renderer);
244 $renderer->doc .= '<table '.$id_string.'class="'.$this->table_class.'">';
245 if ($this->title != '')
246 … $renderer->doc .= '<caption class="sqlplugin__title">'.$this->title.'</caption><tbody>';
256 $this->_sqlRaw__drop_temp_db ($db, &$renderer);
326 …$content =& $this->_scrapeTable(strtolower($url), $startMarker, $tableNumber, $dbfile, $disallow,…
355 $thisrow = $this->_sqlRaw__csv_explode_row($content,$delim);
423 $raw = $this->_pullInWikiPage($url);
458 $table = $this->_fixTable($table);
468 $csv_data .= $this->_strputcsv($row, $colCount-1);
534 $csv_data .= $this->_strputcsv($mycells[$row_index], $numCols-1);
808 if ($this->caption==0 || ($this->caption==1 && $row > 2)) {