demo

- dbGet{categoryPageArray}

You can retrieve PageArrays of all Genres, Artists and Albums and than iterate through it and create some output:

$genres = $fe->dbGetGenres(); // dbGetArtists() dbGetAlbums()

echo "<ul>\n";
foreach($genres as $genre) {
    echo "  <li><a href='".$genre->url."'>".$genre->title."</a></li>\n";
}
echo "</ul>\n";

Below you see the short version of this, - pulled from the FrontEndHandler:

echo $fe->getUL('genre');  // 'genre' - 'artist' - 'album'

echo $fe->getUL('artist');