Class: ActiveAdmin::Views::Pages::Form

Inherits:
Base show all
Defined in:
lib/active_admin/views/pages/form.rb

Instance Attribute Summary

Attributes inherited from Arbre::HTML::Tag

#attributes

Attributes inherited from Arbre::HTML::Element

#children, #parent

Instance Method Summary collapse

Methods inherited from Base

#build

Methods inherited from Arbre::HTML::Document

#build, #build_body, #build_head, #doctype, #document, #tag_name, #to_s

Methods inherited from Arbre::HTML::Tag

#add_class, #build, #class_list, #class_names, #get_attribute, #has_attribute?, #id, #id!, #id=, #initialize, #remove_attribute, #remove_class, #set_attribute, #to_s

Methods inherited from Arbre::HTML::Element

#+, #<<, #add_child, #assigns, #build, builder_method, #content, #content=, #document, #each, #get_elements_by_class_name, #get_elements_by_tag_name, #helpers, #html_safe, #indent_level, #initialize, #parent?, #remove_child, #tag_name, #to_ary, #to_s, #to_str

Methods included from Arbre::Builder::BuilderMethods

#append_return_block, #build_tag, #current_dom_context, #insert_tag, #with_current_dom_context

Methods included from Arbre::Builder

#current_dom_context, #helpers, #method_missing

Constructor Details

This class inherits a constructor from Arbre::HTML::Tag

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Arbre::Builder

Instance Method Details

#form_presenterObject



12
13
14
# File 'lib/active_admin/views/pages/form.rb', line 12

def form_presenter
    active_admin_config.get_page_presenter(:form) || default_form_config
end

#main_contentObject



16
17
18
19
20
21
22
23
24
# File 'lib/active_admin/views/pages/form.rb', line 16

def main_content
  form_options = default_form_options.merge(form_presenter.options)

  if form_options[:partial]
    render(form_options[:partial])
  else
    active_admin_form_for(resource, form_options, &form_presenter.block)
  end
end

#titleObject



7
8
9
10
# File 'lib/active_admin/views/pages/form.rb', line 7

def title
  I18n.t("active_admin.#{params[:action]}_model",
         :model => active_admin_config.resource_name)
end