Module Cms::TemplateSupport
In: app/helpers/cms/template_support.rb

Methods

Included Modules

Cms::Authentication::Controller Cms::ErrorHandling

Public Class methods

[Source]

    # File app/helpers/cms/template_support.rb, line 5
 5:     def self.included(controller)
 6:       controller.class_eval do
 7:         include Cms::Authentication::Controller
 8:         include Cms::ErrorHandling
 9:         
10:         helper Cms::PageHelper
11:         helper Cms::MenuHelper
12:         helper do
13:           def cms_toolbar
14:             %Q{<iframe src="#{cms_toolbar_path(:page_toolbar => 0)}" width="100%" height="100px" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" name="cms_toolbar"></iframe>}
15:           end
16:         end
17:       end
18:     end

Public Instance methods

[Source]

    # File app/helpers/cms/template_support.rb, line 13
13:           def cms_toolbar
14:             %Q{<iframe src="#{cms_toolbar_path(:page_toolbar => 0)}" width="100%" height="100px" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" name="cms_toolbar"></iframe>}
15:           end

[Validate]