function onEBoardSelected($info) { $this->cureBUID = $info['UID']; $cat = new category(""); $content = $cat->backContentOf($this->cureBUID); $ar = array(); foreach ($content as $c) { $lable = $cat->backLable($c['bizUID']); $ar[] = array("name" => $lable, "UID" => $c['bizUID']); } $this->tabbar->booklist($ar); $this->_bookframe("frm"); }
function reload() { $cat = new category("temp"); $content = $cat->backContentOf($this->curUID); $this->posts = array(); $id = 0; foreach ($content as $c) { if ($c['bizname'] == 'epost') { $this->posts[] = new fullepostviewer($this->_fullname . $id++); end($this->posts)->bookUID($c['bizUID']); } } }