Class: Spotlight::CustomFieldsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/spotlight/custom_fields_controller.rb

Overview

CRUD actions for exhibit custom field management.

Instance Method Summary collapse

Methods included from Spotlight::Concerns::ApplicationController

#enabled_in_spotlight_view_type_configuration?, #field_enabled?

Methods included from Controller

#blacklight_config, #current_exhibit, #current_masthead, #current_masthead=, #current_site, #default_url_options, #exhibit_masthead?, #exhibit_search_action_url, #exhibit_search_facet_path, #resource_masthead?, #search_action_url, #search_facet_path, #set_exhibit_locale_scope, #set_locale

Methods included from Config

#exhibit_specific_blacklight_config

Instance Method Details

#createObject



22
23
24
25
26
27
28
29
30
31
32
# File 'app/controllers/spotlight/custom_fields_controller.rb', line 22

def create
  @custom_field.attributes = custom_field_params
  @custom_field.exhibit = current_exhibit

  if @custom_field.save
    redirect_to (@custom_field.exhibit),
                notice: t(:'helpers.submit.custom_field.created', model: @custom_field.class.model_name.human.downcase)
  else
    render action: 'new'
  end
end

#destroyObject



43
44
45
46
47
48
# File 'app/controllers/spotlight/custom_fields_controller.rb', line 43

def destroy
  @custom_field.destroy

  redirect_to (@custom_field.exhibit),
              notice: t(:'helpers.submit.custom_field.destroyed', model: @custom_field.class.model_name.human.downcase)
end

#editObject



18
19
20
# File 'app/controllers/spotlight/custom_fields_controller.rb', line 18

def edit
  add_breadcrumb @custom_field.label, edit_exhibit_custom_field_path(@custom_field.exhibit, @custom_field)
end

#newObject



13
14
15
16
# File 'app/controllers/spotlight/custom_fields_controller.rb', line 13

def new
  @custom_field.field_type ||= 'text'
  add_breadcrumb t(:'helpers.action.spotlight/custom_field.create'), new_exhibit_custom_field_path(@exhibit)
end

#updateObject



34
35
36
37
38
39
40
41
# File 'app/controllers/spotlight/custom_fields_controller.rb', line 34

def update
  if @custom_field.update custom_field_params
    redirect_to (@custom_field.exhibit),
                notice: t(:'helpers.submit.custom_field.updated', model: @custom_field.class.model_name.human.downcase)
  else
    render action: 'edit'
  end
end