Sha256: 99d04de7cabfeca7b06faa0122dc4eb48ff34264d243c0b09c40213a4574c104
Contents?: true
Size: 1.94 KB
Versions: 1
Compression:
Stored size: 1.94 KB
Contents
class EventCalendarExtension < Radiant::Extension version "1.4.1" description "An event calendar extension that administers events locally or draws them from any ical or CalDAV publishers (Google Calendar, .Mac, Darwin Calendar Server, etc.)" url "http://github.com/radiant/radiant-event_calendar-extension" extension_config do |config| config.gem "ri_cal" config.gem "chronic" config.gem "uuidtools" end def activate Page.send :include, EventCalendarTags # defines a wide range of events: tags for use on normal and calendar pages Status.send :include, EventStatuses # adds support for draft and submitted events UserActionObserver.instance.send :add_observer!, Calendar # adds ownership and update hooks to the calendar data UserActionObserver.instance.send :add_observer!, Event # adds ownership and update hooks to the event data if Radiant::Config.table_exists? && !Radiant::Config["event_calendar.icals_path"] Radiant::Config["event_calendar.icals_path"] = "icals" end unless defined? admin.calendar Radiant::AdminUI.send :include, EventCalendarAdminUI admin.calendar = Radiant::AdminUI.load_default_calendar_regions admin.event = Radiant::AdminUI.load_default_event_regions admin.event_venue = Radiant::AdminUI.load_default_event_venue_regions end if admin.respond_to? :dashboard admin.dashboard.index.add :main, "coming_events" else Rails.logger.warn "NO DASHBOARD!" end if respond_to?(:tab) tab('calendar') do add_item('events', '/admin/event_calendar') add_item('calendars', '/admin/event_calendar/calendars') add_item('locations', '/admin/event_calendar/event_venues') end else admin.tabs.add 'calendar', '/admin/event_calendar', :after => "Snippets", :visibility => [:all] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
radiant-event_calendar-extension-1.4.1 | event_calendar_extension.rb |