Class: Admin::FieldGroupsController

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

Overview

Fat Free CRM Copyright © 2008-2011 by Michael Dvorkin

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along with this program. If not, see <www.gnu.org/licenses/>.


Instance Method Summary collapse

Instance Method Details

#confirmObject

GET /admin/field_groups/1/confirm AJAX




85
86
87
# File 'app/controllers/admin/field_groups_controller.rb', line 85

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

#createObject

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




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

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

  respond_with(@field_group)
end

#destroyObject

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




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

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

  respond_with(@field_group)
end

#editObject

GET /admin/field_groups/1/edit AJAX




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

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

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

  respond_with(@field_group)
end

#newObject

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




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

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

  respond_with(@field_group)
end

#sortObject

POST /admin/field_groups/sort




72
73
74
75
76
77
78
79
80
81
# File 'app/controllers/admin/field_groups_controller.rb', line 72

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

  field_group_ids.each_with_index do |id, index|
    FieldGroup.update_all({:position => index+1}, {:id => id})
  end

  render :nothing => true
end

#updateObject

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




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

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

  respond_with(@field_group)
end