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




74
75
76
# File 'app/controllers/admin/field_groups_controller.rb', line 74

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

#createObject

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




33
34
35
36
37
# File 'app/controllers/admin/field_groups_controller.rb', line 33

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




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

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
27
28
# File 'app/controllers/admin/field_groups_controller.rb', line 22

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

  @previous = FieldGroup.find_by_id(Regexp.last_match[1]) || Regexp.last_match[1].to_i if params[:previous].to_s =~ /(\d+)\z/

  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




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

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




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

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

  respond_with(@field_group)
end