Sha256: 076db154c7358cc5f9ae8a2557f3fc4d1e8afe409a0b705d555de2c089eb7445

Contents?: true

Size: 1.64 KB

Versions: 9

Compression:

Stored size: 1.64 KB

Contents

require "globalize"

module KktShoppe
  class ProductCategoryLocalisationsController < ApplicationController

    before_filter { @active_nav = :product_categories }
    before_filter { @product_category = KktShoppe::ProductCategory.find(params[:product_category_id]) }
    before_filter { params[:id] && @localisation = @product_category.translations.find(params[:id]) }

    def index
      @localisations = @product_category.translations
    end

    def new
      @localisation = @product_category.translations.new
      render :action => "form"
    end

    def create
      if I18n.available_locales.include? safe_params[:locale].to_sym
        I18n.locale = safe_params[:locale].to_sym

        if @product_category.update(safe_params)
          I18n.locale = I18n.default_locale
          redirect_to [@product_category, :localisations], :flash => { :notice => t("kkt_shoppe.localisations.localisation_created") }
        else
          render :action => "edit"
        end
      else
        redirect_to [@product_category, :localisations]
      end
    end

    def edit
      render :action => "form"
    end

    def update
      if @localisation.update(safe_params)
        redirect_to [@product_category, :localisations], :notice => t('kkt_shoppe.localisations.localisation_updated')
      else
        render :action => "form"
      end
    end

    def destroy
      @localisation.destroy
      redirect_to [@product_category, :localisations], :notice =>  t('kkt_shoppe.localisations.localisation_destroyed')
    end

    private

    def safe_params
      params[:product_category_translation].permit(:name, :locale, :permalink, :description)
    end

  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
kkt_shoppe-2.0.2 app/controllers/kkt_shoppe/product_category_localisations_controller.rb
kkt_shoppe-2.0.1 app/controllers/kkt_shoppe/product_category_localisations_controller.rb
kkt_shoppe-2.0.0 app/controllers/kkt_shoppe/product_category_localisations_controller.rb
kkt_shoppe-1.3.0 app/controllers/kkt_shoppe/product_category_localisations_controller.rb
kkt_shoppe-1.2.1 app/controllers/kkt_shoppe/product_category_localisations_controller.rb
kkt_shoppe-1.2.0 app/controllers/kkt_shoppe/product_category_localisations_controller.rb
kkt_shoppe-1.1.2 app/controllers/kkt_shoppe/product_category_localisations_controller.rb
kkt_shoppe-1.1.1 app/controllers/kkt_shoppe/product_category_localisations_controller.rb
kkt_shoppe-1.1.0 app/controllers/kkt_shoppe/product_category_localisations_controller.rb