Sha256: 294712c22943934e93cb40158e24eadc09d50a7159b5212339a34a2b193fc9b4

Contents?: true

Size: 1.5 KB

Versions: 8

Compression:

Stored size: 1.5 KB

Contents

class CmsAdmin::SitesController < CmsAdmin::BaseController

  skip_before_filter  :load_admin_site,
                      :load_fixtures

  before_filter :build_site,  :only => [:new, :create]
  before_filter :load_site,   :only => [:edit, :update, :destroy]

  def index
    return redirect_to :action => :new if Cms::Site.count == 0
    @sites = Cms::Site.all
  end

  def new
    render
  end

  def edit
    render
  end

  def create
    @site.save!
    flash[:notice] = I18n.t('cms.sites.created')
    redirect_to cms_admin_site_layouts_path(@site)
  rescue ActiveRecord::RecordInvalid
    logger.detailed_error($!)
    flash.now[:error] = I18n.t('cms.sites.creation_failure')
    render :action => :new
  end

  def update
    @site.update_attributes!(params[:site])
    flash[:notice] = I18n.t('cms.sites.updated')
    redirect_to :action => :edit, :id => @site
  rescue ActiveRecord::RecordInvalid
    logger.detailed_error($!)
    flash.now[:error] = I18n.t('cms.sites.update_failure')
    render :action => :edit
  end

  def destroy
    @site.destroy
    flash[:notice] = I18n.t('cms.sites.deleted')
    redirect_to :action => :index
  end

protected

  def build_site
    @site = Cms::Site.new(params[:site])
    @site.hostname ||= request.host.downcase
  end

  def load_site
    @site = Cms::Site.find(params[:id])
    I18n.locale = ComfortableMexicanSofa.config.admin_locale || @site.locale
  rescue ActiveRecord::RecordNotFound
    flash[:error] = I18n.t('cms.sites.not_found')
    redirect_to :action => :index
  end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.6.19 app/controllers/cms_admin/sites_controller.rb
comfortable_mexican_sofa-1.6.18 app/controllers/cms_admin/sites_controller.rb
comfortable_mexican_sofa-1.6.17 app/controllers/cms_admin/sites_controller.rb
comfortable_mexican_sofa-1.6.16 app/controllers/cms_admin/sites_controller.rb
comfortable_mexican_sofa-1.6.15 app/controllers/cms_admin/sites_controller.rb
comfortable_mexican_sofa-1.6.14 app/controllers/cms_admin/sites_controller.rb
comfortable_mexican_sofa-1.6.13 app/controllers/cms_admin/sites_controller.rb
comfortable_mexican_sofa-1.6.12 app/controllers/cms_admin/sites_controller.rb