Class: Shoppe::ProductCategoriesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/shoppe/product_categories_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



15
16
17
18
19
20
21
22
# File 'app/controllers/shoppe/product_categories_controller.rb', line 15

def create
  @product_category = Shoppe::ProductCategory.new(safe_params)
  if @product_category.save
    redirect_to :product_categories, :flash => { :notice => t('shoppe.product_category.create_notice') }
  else
    render :action => "new"
  end
end

#destroyObject



35
36
37
38
# File 'app/controllers/shoppe/product_categories_controller.rb', line 35

def destroy
  @product_category.destroy
  redirect_to :product_categories, :flash => { :notice => t('shoppe.product_category.destroy_notice') }
end

#editObject



24
25
# File 'app/controllers/shoppe/product_categories_controller.rb', line 24

def edit
end

#indexObject



7
8
9
# File 'app/controllers/shoppe/product_categories_controller.rb', line 7

def index
  @product_categories_without_parent = Shoppe::ProductCategory.without_parent.ordered
end

#newObject



11
12
13
# File 'app/controllers/shoppe/product_categories_controller.rb', line 11

def new
  @product_category = Shoppe::ProductCategory.new
end

#updateObject



27
28
29
30
31
32
33
# File 'app/controllers/shoppe/product_categories_controller.rb', line 27

def update
  if @product_category.update(safe_params)
    redirect_to [:edit, @product_category], :flash => { :notice => t('shoppe.product_category.update_notice') }
  else
    render :action => "edit"
  end
end