list[] = array( 'id' => $this->id, 'title' => $this->title, 'image' => $this->image, 'icon' => $this->icon, 'poptype' => $this->poptype, 'popvalue' => $this->popvalue, 'clicktype' => $this->clicktype, 'clickvalue' => $this->clickvalue, 'fields' => $this->field, ); $this->field = array(); } public function field($id, $icon, $value) { $this->field[] = array('id' => $id, 'icon' => $icon, 'value' => $value); } public function output() { return array( __CLASS__ => array('page' => $this->page, 'perpage' => $this->perpage, 'list' => $this->list) ); } } ?>