Module: Kuhsaft::AdminHelper

Defined in:
app/helpers/kuhsaft/admin_helper.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args, &block) ⇒ Object

When rendering the layout of our host application, the paths of the host application are not visible to the engine therefore we delegate all failing helper calls to ‘main_app’, which is our host application



9
10
11
12
13
# File 'app/helpers/kuhsaft/admin_helper.rb', line 9

def method_missing(method, *args, &block)
  main_app.send(method, *args, &block)
rescue NoMethodError
  super
end

Instance Method Details

#sublime_video_include_tagObject



15
16
17
18
# File 'app/helpers/kuhsaft/admin_helper.rb', line 15

def sublime_video_include_tag
  token = Kuhsaft::Engine.config.sublime_video_token
  javascript_include_tag "//cdn.sublimevideo.net/js/#{token}-beta.js"
end