["icon" => "headphones", "css_class" => "music", "label" => "Related artist(s)"], "books" => ["icon" => "books", "css_class" => "books", "label" => "Related book(s)"], "genres" => ["icon" => "headphones", "css_class" => "music", "label" => "Related genre(s)"], "movies" => ["icon" => "movie", "css_class" => "movies", "label" => "Related movie(s)"], "posts" => ["icon" => "article", "css_class" => "article", "label" => "Related post(s)"], "shows" => ["icon" => "device-tv-old", "css_class" => "tv", "label" => "Related show(s)"] ]; echo '
'; foreach ($sections as $key => $section) { switch ($key) { case "artists": $items = $artists; break; case "books": $items = $books; break; case "genres": $items = $genres; break; case "movies": $items = $movies; break; case "posts": $items = $posts; break; case "shows": $items = $shows; break; default: $items = []; } if (!empty($items)) { echo '

'; echo '' . getTablerIcon($section['icon']) . ' '; echo htmlspecialchars($section['label']); echo '

'; echo ''; } } echo '
'; } ?>