Sha256: 504673c323d4ce7ed91bcc8964f43ef2fde95d3a3ccb9e7a5698f009ed3e6d2f

Contents?: true

Size: 1.63 KB

Versions: 2

Compression:

Stored size: 1.63 KB

Contents

class Plugins::FrontCache::AdminController < CamaleonCms::Apps::PluginsAdminController
  include Plugins::FrontCache::FrontCacheHelper
  def settings
    @caches = current_site.get_meta("front_cache_elements", {paths: []})
    @caches[:paths] << "" unless @caches[:paths].present?
  end

  def save_settings
    current_site.set_meta("front_cache_elements", {paths: ((params[:cache][:paths] || []).delete_if{|a| !a.present?  } ||[]),
                                                   posts: (params[:cache][:posts]||[]),
                                                   post_types: (params[:cache][:post_type]||[]),
                                                   skip_posts: (params[:cache][:skip_posts]||[]),
                                                   cache_login: params[:cache][:cache_login],
                                                   home: params[:cache][:home],
                                                   preserve_cache_on_restart: params[:cache][:preserve_cache_on_restart],
                                                   invalidate_only: params[:cache][:invalidate_only],
                                                   cache_counter: current_site.get_meta("front_cache_elements")[:cache_counter] || 0
                                                  })
    flash[:notice] = "#{t('plugin.front_cache.message.settings_saved')}"
    redirect_to action: :settings
  end

  def clean_cache
    flash[:notice] = "#{t('plugin.front_cache.message.cache_destroyed')}"
    front_cache_clean()
    if Rails.version.to_i < 5
      redirect_to :back
    else
      redirect_back(fallback_location: '/admin/plugins')
    end
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
camaleon_cms-2.4.3.12 app/apps/plugins/front_cache/admin_controller.rb
camaleon_cms-2.4.3.11 app/apps/plugins/front_cache/admin_controller.rb