public function getAllPolls() { $rows = $this->db->get('Polls')->result(); $list = array(); foreach ($rows as $row) { $poll = new Poll(); $poll->load($row); $list[] = $poll; } return json_encode($list); }