Sha256: 8ddbee6e73b695aaacc7754eac065b3a81659ba2871950219ee78b0b4f93a277
Contents?: true
Size: 1.03 KB
Versions: 61
Compression:
Stored size: 1.03 KB
Contents
module CalendarHelper include EventCalendar::CalendarHelper def month_link(month_date) link_to(I18n.localize(month_date, :format => "%B"), {:month => month_date.month, :year => month_date.year}) end # custom options for this calendar def event_calendar_opts { :year => @year, :month => @month, :event_strips => @event_strips, :month_name_text => I18n.localize(@shown_month, :format => "%B %Y"), :previous_month_text => "<< " + month_link(@shown_month.prev_month), :next_month_text => month_link(@shown_month.next_month) + " >>", :use_all_day => true, :link_to_day_action => 'show' } end def event_calendar # args is an argument hash containing :event, :day, and :options calendar event_calendar_opts do |args| event, day = args[:event], args[:day] html = %(<a href="#{event_path(event)}" title="#{h(event.display_name.localize)}">) html << display_event_time(event, day) html << %(#{h(event.display_name.localize)}</a>) html end end end
Version data entries
61 entries across 61 versions & 1 rubygems