blob: 59facdffe80fd207207c87e2962cd0d8ea4887a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
class PhoneModelsController < ApplicationController
load_and_authorize_resource :manufacturer
load_and_authorize_resource :phone_model, :through => [:manufacturer]
before_filter :spread_breadcrumbs
def index
end
def show
end
def new
@phone_model = @manufacturer.phone_models.build
end
def create
@phone_model = @manufacturer.phone_models.build.new(params[:phone_model])
if @phone_model.save
redirect_to manufacturer_phone_model_path( @manufacturer, @phone_model ), :notice => t('phone_models.controller.successfuly_created')
else
render :new
end
end
def edit
end
def update
if @phone_model.update_attributes(params[:phone_model])
redirect_to manufacturer_phone_model_path( @manufacturer, @phone_model ), :notice => t('phone_models.controller.successfuly_updated')
else
render :edit
end
end
def destroy
@phone_model.destroy
redirect_to manufacturer_phone_models_url( @manufacturer ), :notice => t('phone_models.controller.successfuly_destroyed')
end
private
def spread_breadcrumbs
add_breadcrumb t("manufacturers.index.page_title"), manufacturers_path
add_breadcrumb @manufacturer, manufacturer_path(@manufacturer)
add_breadcrumb t("phone_models.index.page_title"), manufacturer_phone_models_path(@manufacturer)
if @phone_model && !@phone_model.new_record?
add_breadcrumb @phone_model, manufacturer_phone_model_path(@manufacturer, @phone_model)
end
end
end
|