Class: Admin::ResourceController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/admin/resource_controller.rb

Class Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Class Attribute Details

.callbacksObject

Returns the value of attribute callbacks.



82
83
84
# File 'app/controllers/admin/resource_controller.rb', line 82

def callbacks
  @callbacks
end

.parent_dataObject

Returns the value of attribute parent_data.



81
82
83
# File 'app/controllers/admin/resource_controller.rb', line 81

def parent_data
  @parent_data
end

Class Method Details

.belongs_to(model_name, options = {}) ⇒ Object



84
85
86
87
88
89
# File 'app/controllers/admin/resource_controller.rb', line 84

def belongs_to(model_name, options = {})
  @parent_data ||= {}
  @parent_data[:model_name] = model_name
  @parent_data[:model_class] = model_name.to_s.classify.constantize
  @parent_data[:find_by] = options[:find_by] || :id
end

.createObject



91
92
93
94
# File 'app/controllers/admin/resource_controller.rb', line 91

def create
  @callbacks ||= {}
  @callbacks[:create] ||= Spree::ActionCallbacks.new
end

.destroyObject



101
102
103
104
# File 'app/controllers/admin/resource_controller.rb', line 101

def destroy
  @callbacks ||= {}
  @callbacks[:destroy] ||= Spree::ActionCallbacks.new
end

.updateObject



96
97
98
99
# File 'app/controllers/admin/resource_controller.rb', line 96

def update
  @callbacks ||= {}
  @callbacks[:update] ||= Spree::ActionCallbacks.new
end

Instance Method Details

#createObject



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'app/controllers/admin/resource_controller.rb', line 43

def create
  invoke_callbacks(:create, :before)
  if @object.save
   if controller_name == "taxonomies"
     @object.create_image(:attachment=>params[:taxon][:attachement])
  end
    invoke_callbacks(:create, :after)
    flash[:notice] = flash_message_for(@object, :successfully_created)
    respond_with(@object) do |format|
      format.html { redirect_to location_after_save }
      format.js   { render :layout => false }
    end
  else
    invoke_callbacks(:create, :fails)
    respond_with(@object)
  end
end

#destroyObject



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'app/controllers/admin/resource_controller.rb', line 61

def destroy
  invoke_callbacks(:destroy, :before)
  if @object.destroy
    invoke_callbacks(:destroy, :after)
    flash[:notice] = flash_message_for(@object, :successfully_removed)
    respond_with(@object) do |format|
      format.html { redirect_to collection_url }
      format.js   { render :partial => "/admin/shared/destroy" }
    end
  else
    invoke_callbacks(:destroy, :fails)
    respond_with(@object) do |format|
      format.html { redirect_to collection_url }
    end
  end
end

#editObject



16
17
18
19
20
21
# File 'app/controllers/admin/resource_controller.rb', line 16

def edit
  respond_with(@object) do |format|
    format.html { render :layout => !request.xhr? }
    format.js { render :layout => false }
  end
end

#newObject



9
10
11
12
13
14
# File 'app/controllers/admin/resource_controller.rb', line 9

def new
  respond_with(@object) do |format|
    format.html { render :layout => !request.xhr? }
    format.js { render :layout => false }
  end
end

#updateObject



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'app/controllers/admin/resource_controller.rb', line 23

def update
  invoke_callbacks(:update, :before)
   if controller_name == "taxonomies"
  @image_object=@object.image
  @image_object.update_attributes(:attachment => params[:taxon][:attachement])
  end

  if @object.update_attributes(params[object_name])
   invoke_callbacks(:update, :after)
    flash[:notice] = flash_message_for(@object, :successfully_updated)
    respond_with(@object) do |format|
      format.html { redirect_to location_after_save }
      format.js   { render :layout => false }
    end
  else
    invoke_callbacks(:update, :fails)
    respond_with(@object)
  end
end