Lines Matching refs:row

76 	function process($row)  argument
78 $this->row = $row;
79 $type = $row['type']; // WIKINDX type
85 $year2 = stripslashes($this->row['year2']);
86 if($year2 && !$this->row['year1'])
88 $this->row['year1'] = $year2;
89 unset($this->row['year2']);
91 else if($year2 && $this->row['year1'])
93 $this->row['year2'] = stripslashes($this->row['year1']);
94 $this->row['year1'] = $year2;
97 $this->row = $this->bibformat->preProcess($type, $this->row);
103 if(!$this->row['creator' . $index] ||
129 $this->bibformat->addAllOtherItems($this->row);
154 $pString = stripslashes($this->row['noSort']) . ' ' .
155 stripslashes($this->row['title']);
156 if($this->row['subtitle'])
157 $pString .= ': ' . stripslashes($this->row['subtitle']);
164 if(!$this->row['url'])
166 $url = ($this->output == 'html') ? htmlspecialchars(stripslashes($this->row['url'])) :
167 stripslashes($this->row['url']);
168 unset($this->row['url']);
177 $startDay = isset($this->row['miscField2']) ? stripslashes($this->row['miscField2']) : FALSE;
178 $startMonth = isset($this->row['miscField3']) ? stripslashes($this->row['miscField3']) : FALSE;
179 unset($this->row['miscField2']);
180 unset($this->row['miscField3']);
181 $endDay = isset($this->row['miscField5']) ? stripslashes($this->row['miscField5']) : FALSE;
182 $endMonth = isset($this->row['miscField6']) ? stripslashes($this->row['miscField6']) : FALSE;
183 unset($this->row['miscField5']);
184 unset($this->row['miscField6']);
196 $minutes = stripslashes($this->row['miscField1']);
197 $hours = stripslashes($this->row['miscField4']);
207 if(!$this->row[$editionKey])
209 $edition = stripslashes($this->row[$editionKey]);
215 if(!$this->row['pageStart'] || $this->pages) // empty field or page format already done
221 $start = trim(stripslashes($this->row['pageStart']));
222 $end = $this->row['pageEnd'] ? trim(stripslashes($this->row['pageEnd'])) : FALSE;
231 $this->db->tidyInput($this->row[$nameType]) . ")");
235 $ids = explode(",", $this->row[$nameType]);
236 while($row = $this->db->loopRecordSet($recordset))
237 $rowSql[$row['id']] = $row;