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, #exhibit_masthead?, #exhibit_search_action_url, #exhibit_search_facet_url, #resource_masthead?, #search_action_url, #search_facet_url

Methods included from Config

#exhibit_specific_blacklight_config

Instance Method Details

#createObject



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

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



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

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



16
17
18
# File 'app/controllers/spotlight/custom_fields_controller.rb', line 16

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

#newObject



11
12
13
14
# File 'app/controllers/spotlight/custom_fields_controller.rb', line 11

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

#updateObject



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

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