Class: Cmtool::ImagesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/cmtool/images_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject

POST /images POST /images.xml



44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'app/controllers/cmtool/images_controller.rb', line 44

def create
  @image = Cmtool::Image.new(params[:image])

  respond_to do |format|
    if @image.save
      format.html { redirect_to([cmtool, @image.directory || @image], :notice => I18n.t('cmtool.action.create.successful', :model => Cmtool::Image.model_name.human) ) }
      format.xml  { render :xml => @image, :status => :created, :location => @image }
    else
      format.html { render :action => "new" }
      format.xml  { render :xml => @image.errors, :status => :unprocessable_entity }
    end
  end
end

#destroyObject

DELETE /images/1 DELETE /images/1.xml



76
77
78
79
80
81
82
83
84
# File 'app/controllers/cmtool/images_controller.rb', line 76

def destroy
  @image = Cmtool::Image.find(params[:id])
  @image.destroy

  respond_to do |format|
    format.html { redirect_to(cmtool.images_url) }
    format.xml  { head :ok }
  end
end

#editObject

GET /images/1/edit



38
39
40
# File 'app/controllers/cmtool/images_controller.rb', line 38

def edit
  @image = Cmtool::Image.find(params[:id])
end

#indexObject

GET /images GET /images.xml



5
6
7
8
9
10
11
12
13
# File 'app/controllers/cmtool/images_controller.rb', line 5

def index
  @images = Cmtool::Image.all

  respond_to do |format|
    format.html # index.html.erb
    format.xml  { render :xml => @images }
    format.js
  end
end

#newObject

GET /images/new GET /images/new.xml



28
29
30
31
32
33
34
35
# File 'app/controllers/cmtool/images_controller.rb', line 28

def new
  @image = Cmtool::Image.new

  respond_to do |format|
    format.html # new.html.erb
    format.xml  { render :xml => @image }
  end
end

#showObject

GET /images/1 GET /images/1.xml



17
18
19
20
21
22
23
24
# File 'app/controllers/cmtool/images_controller.rb', line 17

def show
  @image = Cmtool::Image.find(params[:id])

  respond_to do |format|
    format.html # show.html.erb
    format.xml  { render :xml => @image }
  end
end

#updateObject

PUT /images/1 PUT /images/1.xml



60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'app/controllers/cmtool/images_controller.rb', line 60

def update
  @image = Cmtool::Image.find(params[:id])

  respond_to do |format|
    if @image.update_attributes(params[:image])
      format.html { redirect_to([cmtool, @image], :notice => I18n.t('cmtool.action.update.successful', :model => Cmtool::Image.model_name.human)) }
      format.xml  { head :ok }
    else
      format.html { render :action => "edit" }
      format.xml  { render :xml => @image.errors, :status => :unprocessable_entity }
    end
  end
end