Class: Spree::Admin::TaxonsController
- Inherits:
-
BaseController
- Object
- BaseController
- BaseController
- Spree::Admin::TaxonsController
- Defined in:
- app/controllers/spree/admin/taxons_controller.rb
Instance Method Summary collapse
Instance Method Details
#create ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'app/controllers/spree/admin/taxons_controller.rb', line 13 def create @taxon = @taxonomy.taxons.build(params[:taxon]) if @taxon.save respond_with(@taxon) do |format| format.json { render json: @taxon.to_json } end else flash[:error] = Spree.t('errors.messages.could_not_create_taxon') respond_with(@taxon) do |format| format.html { redirect_to @taxonomy ? edit_admin_taxonomy_url(@taxonomy) : admin_taxonomies_url } end end end |
#edit ⇒ Object
27 28 |
# File 'app/controllers/spree/admin/taxons_controller.rb', line 27 def edit end |
#index ⇒ Object
10 11 |
# File 'app/controllers/spree/admin/taxons_controller.rb', line 10 def index end |
#update ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'app/controllers/spree/admin/taxons_controller.rb', line 30 def update successful = @taxon.transaction do parent_id = params[:taxon][:parent_id] set_position set_parent(parent_id) @taxon.save! # regenerate permalink regenerate_permalink if parent_id set_permalink_params #check if we need to rename child taxons if parent name or permalink changes @update_children = true if params[:taxon][:name] != @taxon.name || params[:taxon][:permalink] != @taxon.permalink @taxon.update_attributes(taxon_params) end if successful flash[:success] = (@taxon, :successfully_updated) #rename child taxons rename_child_taxons if @update_children respond_with(@taxon) do |format| format.html { redirect_to edit_admin_taxonomy_url(@taxonomy) } format.json { render json: @taxon.to_json } end else respond_with(@taxon) do |format| format.html { render :edit } format.json { render json: @taxon.errors..to_sentence, status: 422 } end end end |