Sha256: 3aa8deb8908acf89fd862da1a0755ff3ef43c5ba6ecc24055933bcc4f41819b9

Contents?: true

Size: 1.56 KB

Versions: 9

Compression:

Stored size: 1.56 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
    @site = Cms::Site.find_by_id(session[:site_id])
    @sites ||= Cms::Site.all
  end

  def new
    render
  end

  def edit
    render
  end

  def create
    @site.save!
    flash[:success] = 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[:success] = 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[:success] = 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

9 entries across 9 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.8.5 app/controllers/cms_admin/sites_controller.rb
comfortable_mexican_sofa-1.8.4 app/controllers/cms_admin/sites_controller.rb
comfortable_mexican_sofa-1.8.3 app/controllers/cms_admin/sites_controller.rb
comfortable_mexican_sofa-1.8.2 app/controllers/cms_admin/sites_controller.rb
comfortable_mexican_sofa-1.8.1 app/controllers/cms_admin/sites_controller.rb
comfortable_mexican_sofa-1.8.0 app/controllers/cms_admin/sites_controller.rb
comfortable_mexican_sofa-1.7.3 app/controllers/cms_admin/sites_controller.rb
comfortable_mexican_sofa-1.7.1 app/controllers/cms_admin/sites_controller.rb
comfortable_mexican_sofa-1.7.0 app/controllers/cms_admin/sites_controller.rb