db->getRows( $this->db->q(' SELECT * FROM musicbrainz.bh_release_group WHERE artist_id IN (\''. implode('\',\'', $artist_ids) .'\') AND type = 1 ORDER BY year ASC, id ASC '), 'id' ); } public function getArtistAlbumsIds($artist_id) { return array_keys($this->db->getRows( $this->db->q(' SELECT id FROM musicbrainz.bh_release_group WHERE artist_id = \''. $artist_id .'\' AND type = 1 ORDER BY year ASC, id ASC '), 'id' )); } }