Sha256: 4035dbb0046ae0a7accbd3ba75b9749c08857d23ace044505986ba158cb27b33

Contents?: true

Size: 1.3 KB

Versions: 8

Compression:

Stored size: 1.3 KB

Contents

class CmsAdmin::SnippetsController < CmsAdmin::BaseController
  
  before_filter :build_cms_snippet, :only => [:new, :create]
  before_filter :load_cms_snippet,  :only => [:edit, :update, :destroy]
  
  def index
    @cms_snippets = @cms_site.cms_snippets.all(:order => 'label')
  end
  
  def new
    render
  end
  
  def edit
    render
  end
  
  def create
    @cms_snippet.save!
    flash[:notice] = 'Snippet created'
    redirect_to :action => :edit, :id => @cms_snippet
  rescue ActiveRecord::RecordInvalid
    flash.now[:error] = 'Failed to create snippet'
    render :action => :new
  end
  
  def update
    @cms_snippet.update_attributes!(params[:cms_snippet])
    flash[:notice] = 'Snippet updated'
    redirect_to :action => :edit, :id => @cms_snippet
  rescue ActiveRecord::RecordInvalid
    flash.now[:error] = 'Failed to update snippet'
    render :action => :edit
  end
  
  def destroy
    @cms_snippet.destroy
    flash[:notice] = 'Snippet deleted'
    redirect_to :action => :index
  end
  
protected
  
  def build_cms_snippet
    @cms_snippet = @cms_site.cms_snippets.new(params[:cms_snippet])
  end
  
  def load_cms_snippet
    @cms_snippet = @cms_site.cms_snippets.find(params[:id])
  rescue ActiveRecord::RecordNotFound
    flash[:error] = 'Snippet not found'
    redirect_to :action => :index
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.0.10 app/controllers/cms_admin/snippets_controller.rb
comfortable_mexican_sofa-1.0.9 app/controllers/cms_admin/snippets_controller.rb
comfortable_mexican_sofa-1.0.7 app/controllers/cms_admin/snippets_controller.rb
comfortable_mexican_sofa-1.0.6 app/controllers/cms_admin/snippets_controller.rb
comfortable_mexican_sofa-1.0.5 app/controllers/cms_admin/snippets_controller.rb
comfortable_mexican_sofa-1.0.4 app/controllers/cms_admin/snippets_controller.rb
comfortable_mexican_sofa-1.0.3 app/controllers/cms_admin/snippets_controller.rb
comfortable_mexican_sofa-1.0.2 app/controllers/cms_admin/snippets_controller.rb