parent = $parent; } function getListData() { $sql = e107::getDb(); $list_caption = $this->parent->settings['caption']; $list_display = ($this->parent->settings['open'] ? "" : "none"); if($this->parent->mode == "new_page" || $this->parent->mode == "new_menu" ) { $lvisit = $this->parent->getlvisit(); $qry = "cb_datestamp>".$lvisit; } else { $qry = "cb_id != '0' "; } $qry .= " ORDER BY cb_datestamp DESC LIMIT 0,".intval($this->parent->settings['amount']); $bullet = $this->parent->getBullet($this->parent->settings['icon']); if(!$chatbox_posts = $this->parent->$sql->gen("SELECT * FROM #chatbox WHERE ".$qry)) { $list_data = LIST_CHATBOX_2; } else { while($row = $this->parent->$sql->fetch()) { $cb_id = substr($row['cb_nick'] , 0, strpos($row['cb_nick'] , ".")); $cb_nick = substr($row['cb_nick'] , (strpos($row['cb_nick'] , ".")+1)); $cb_message = ($row['cb_blocked'] ? CHATBOX_L6 : str_replace("
", " ", $tp->toHTML($row['cb_message']))); $rowheading = $this->parent->parse_heading($cb_message); $record['icon'] = $bullet; $record['heading'] = $rowheading; $record['author'] = ($this->parent->settings['author'] ? ($cb_id != 0 ? "".$cb_nick."" : $cb_nick) : ""); $record['category'] = ""; $record['date'] = ($this->parent->settings['date'] ? ($row['cb_datestamp'] ? $this->parent->getListDate($row['cb_datestamp']) : "") : ""); $record['info'] = ""; $list_data[] = $record; } } //return array with 'records', (global)'caption', 'display' return array( 'records'=>$list_data, 'caption'=>$list_caption, 'display'=>$list_display ); } } ?>