class ActiveScaffold::Bridges::CalendarDateSelect

Public Class Methods

install() click to toggle source
# File lib/active_scaffold/bridges/calendar_date_select.rb, line 2
def self.install
  # check to see if the old bridge was installed.  If so, warn them
  # we can detect this by checking to see if the bridge was installed before calling this code
     
  if ActiveScaffold::Config::Core.instance_methods.include?("initialize_with_calendar_date_select")
    raise RuntimeError, "We've detected that you have active_scaffold_calendar_date_select_bridge installed.  This plugin has been moved to core.  Please remove active_scaffold_calendar_date_select_bridge to prevent any conflicts"
  end
  
  require File.join(File.dirname(__FILE__), "calendar_date_select/as_cds_bridge.rb")
end
install?() click to toggle source
# File lib/active_scaffold/bridges/calendar_date_select.rb, line 13
def self.install?
  super && ActiveScaffold.js_framework == :prototype
end
javascripts() click to toggle source
# File lib/active_scaffold/bridges/calendar_date_select.rb, line 21
def self.javascripts
  calendar_date_select_javascripts
end
stylesheets() click to toggle source
# File lib/active_scaffold/bridges/calendar_date_select.rb, line 17
def self.stylesheets
  calendar_date_select_stylesheets
end