Method: Cms::PageHelper#page_title

Defined in:
app/helpers/cms/page_helper.rb

#page_title(*args) ⇒ Object



3
4
5
6
7
8
9
# File 'app/helpers/cms/page_helper.rb', line 3

def page_title(*args)
  if args.first
    @controller.instance_variable_get("@template").instance_variable_set("@page_title", args.first)
  else
    @controller.instance_variable_get("@template").instance_variable_get("@page_title")
  end
end