Class: Cmtool::FaqsController

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

Instance Method Summary collapse

Methods included from ControllerGlue

#cmtool_user

Instance Method Details

#createObject

POST /faqs POST /faqs.xml



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

def create
  @faq = Cmtool::Faq.new(faq_params)

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

#destroyObject

DELETE /faqs/1 DELETE /faqs/1.xml



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

def destroy
  @faq = Cmtool::Faq.find(params[:id])
  @faq.destroy

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

#editObject

GET /faqs/1/edit



37
38
39
# File 'app/controllers/cmtool/faqs_controller.rb', line 37

def edit
  @faq = Cmtool::Faq.find(params[:id])
end

#indexObject

GET /faqs GET /faqs.xml



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

def index
  @faqs = Cmtool::Faq.all

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

#newObject

GET /faqs/new GET /faqs/new.xml



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

def new
  @faq = Cmtool::Faq.new

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

#showObject

GET /faqs/1 GET /faqs/1.xml



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

def show
  @faq = Cmtool::Faq.find(params[:id])

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

#updateObject

PUT /faqs/1 PUT /faqs/1.xml



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

def update
  @faq = Cmtool::Faq.find(params[:id])

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