1 # Methods added to this helper will be available to all templates in the application.
2 module ApplicationHelper
3 def class_for_song(song)
6 elsif @song.id == song.id
13 def class_for_show(show)
16 elsif @show.id == show.id
24 Song.find(:all, :order => 'title')
28 Show.find(:all, :order => 'created_at DESC')