public function getSubscriptionsScheme($userId) { $rowSet = $this->fetchAll(array('user_id = ?' => $userId)); $feeds = array(); foreach ($rowSet as $row) { $feeds[] = array($row->feed_id, $this->feeds->getTitle($row->feed_id)); } return $feeds; }