Class: Admin::FieldGroupsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/admin/field_groups_controller.rb

Overview

Copyright © 2008-2013 Michael Dvorkin and contributors.

Fat Free CRM is freely distributable under the terms of MIT license. See MIT-LICENSE file or www.opensource.org/licenses/mit-license.php


Instance Method Summary collapse

Instance Method Details

#confirmObject

GET /admin/field_groups/1/confirm AJAX




72
73
74
# File 'app/controllers/admin/field_groups_controller.rb', line 72

def confirm
  @field_group = FieldGroup.find(params[:id])
end

#createObject

POST /admin/field_groups POST /admin/field_groups.xml AJAX




31
32
33
34
35
# File 'app/controllers/admin/field_groups_controller.rb', line 31

def create
  @field_group = FieldGroup.create(field_group_params)

  respond_with(@field_group)
end

#destroyObject

DELETE /admin/field_groups/1 DELETE /admin/field_groups/1.xml AJAX




50
51
52
53
54
55
# File 'app/controllers/admin/field_groups_controller.rb', line 50

def destroy
  @field_group = FieldGroup.find(params[:id])
  @field_group.destroy

  respond_with(@field_group)
end

#editObject

GET /admin/field_groups/1/edit AJAX




22
23
24
25
26
# File 'app/controllers/admin/field_groups_controller.rb', line 22

def edit
  @field_group = FieldGroup.find(params[:id])

  respond_with(@field_group)
end

#newObject

GET /admin/field_groups/new GET /admin/field_groups/new.xml AJAX




14
15
16
17
18
# File 'app/controllers/admin/field_groups_controller.rb', line 14

def new
  @field_group = FieldGroup.new(klass_name: params[:klass_name])

  respond_with(@field_group)
end

#sortObject

POST /admin/field_groups/sort




59
60
61
62
63
64
65
66
67
68
# File 'app/controllers/admin/field_groups_controller.rb', line 59

def sort
  asset = params[:asset]
  field_group_ids = params["#{asset}_field_groups"]

  field_group_ids.each_with_index do |id, index|
    FieldGroup.where(id: id).update_all(position: index + 1)
  end

  render nothing: true
end

#updateObject

PUT /admin/field_groups/1 PUT /admin/field_groups/1.xml AJAX




40
41
42
43
44
45
# File 'app/controllers/admin/field_groups_controller.rb', line 40

def update
  @field_group = FieldGroup.find(params[:id])
  @field_group.update(field_group_params)

  respond_with(@field_group)
end