Sha256: 476da1c000b53ef8c1eb64b17e35b4d16dc431892a44e8e87b515e6a11102d97

Contents?: true

Size: 1.25 KB

Versions: 6

Compression:

Stored size: 1.25 KB

Contents

class Admin::CategoriesController < Admin::BaseController

  cache_sweeper :blog_sweeper

  def index
    @categories = Category.find(:all)
  end

  def new; new_or_edit ; end
  def edit; new_or_edit;  end

  def destroy
    @category = Category.find(params[:id])
    if request.post?
      @category.destroy
      redirect_to :action => 'index'
    end
  end

  def order
    Category.reorder(params[:category_list])
    render :nothing => true
  end

  def asort
    Category.reorder_alpha
    category_container
  end

  def category_container
    @categories = Category.find(:all, :order => :position)
    render :partial => "categories"
  end

  def reorder
    @categories = Category.find(:all, :order => :position)
    render :layout => false
  end
  
  private
  
  def new_or_edit
    @category = case params[:id]
    when nil
      Category.new
    else
      Category.find(params[:id])
    end
    @category.attributes = params[:category]
    if request.post?
      save_category
      return
    end    
    render :action => 'new'
  end
  
  def save_category
    if @category.save!
      flash[:notice] = _('Category was successfully saved.') 
    else
      flash[:error] = _('Category could not be saved.')
    end
      redirect_to :action => 'index'
  end
  
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
typo-5.5 app/controllers/admin/categories_controller.rb
typo-5.4.4 app/controllers/admin/categories_controller.rb
typo-5.4.3 app/controllers/admin/categories_controller.rb
typo-5.4.2 app/controllers/admin/categories_controller.rb
typo-5.4.1 app/controllers/admin/categories_controller.rb
typo-5.4 app/controllers/admin/categories_controller.rb