Class: Plugins::FrontCache::AdminController
- Inherits:
-
CamaleonCms::Apps::PluginsAdminController
- Object
- ApplicationController
- CamaleonCms::CamaleonController
- CamaleonCms::AdminController
- CamaleonCms::Apps::PluginsAdminController
- Plugins::FrontCache::AdminController
- Includes:
- FrontCacheHelper
- Defined in:
- app/apps/plugins/front_cache/admin_controller.rb
Constant Summary
Constants included from CamaleonCms::UploaderHelper
CamaleonCms::UploaderHelper::SUSPICIOUS_PATTERNS
Instance Method Summary collapse
Methods included from FrontCacheHelper
#front_cache_before_load, #front_cache_clean, #front_cache_front_after_load, #front_cache_front_before_load, #front_cache_on_active, #front_cache_on_inactive, #front_cache_on_render, #front_cache_plugin_options, #front_cache_post_requests
Methods inherited from CamaleonCms::AdminController
#ajax, #dashboard, #index, #search
Methods included from CamaleonCms::Admin::ApplicationHelper
#cama_do_pagination, #cama_get_i18n_frontend, #cama_shortcode_print
Methods included from CamaleonCms::Admin::CustomFieldsHelper
#cama_custom_field_elements, #cf_add_model
Methods included from CamaleonCms::Admin::CategoryHelper
#cama_category_get_options_html
Methods included from CamaleonCms::Admin::PostTypeHelper
#cama_hierarchy_post_list, #post_type_html_inputs, #post_type_list_taxonomy, #post_type_status
Methods included from CamaleonCms::Admin::MenusHelper
#admin_menu_add_menu, #admin_menu_append_menu_item, #admin_menu_draw, #admin_menu_insert_menu_after, #admin_menu_insert_menu_before, #admin_menu_prepend_menu_item, #admin_menus_add_commons
Methods included from CamaleonCms::Admin::BreadcrumbHelper
#admin_breadcrumb_add, #cama_admin_title_draw
Methods inherited from CamaleonCms::CamaleonController
Methods included from CamaleonCms::EmailHelper
#cama_send_email, #cama_send_mail_to_admin, #send_email, #send_password_reset_email, #send_user_confirm_email
Methods included from CamaleonCms::HooksHelper
#hook_run, #hook_skip, #hooks_run
Methods included from CamaleonCms::PluginsHelper
#current_plugin, #plugin_asset_path, #plugin_asset_url, #plugin_destroy, #plugin_install, #plugin_layout, #plugin_load_helpers, #plugin_uninstall, #plugin_upgrade, #plugin_view, #plugins_initialize, #self_plugin_key
Methods included from CamaleonCms::SiteHelper
#cama_current_site_host_port, #cama_get_list_layouts_files, #cama_get_list_template_files, #cama_is_test_request?, #current_locale, #current_site, #current_theme, #site_after_install, #site_install_theme, #site_uninstall_theme
Methods included from CamaleonCms::UploaderHelper
#cama_crop_image, #cama_file_path_to_url, #cama_resize_and_crop, #cama_resize_upload, #cama_tmp_upload, #cama_uploader, #cama_uploader_generate_thumbnail, #cama_url_to_file_path, #slugify, #slugify_folder, #upload_file, #uploader_verify_name
Methods included from CamaleonCms::CamaleonHelper
#cama_cache_fetch, #cama_draw_timer, #cama_edit_link, #cama_is_admin_request?, #cama_pluralize_text, #cama_requestAction, #cama_sitemap_cats_generator, #cama_t, #ct
Methods included from CamaleonCms::CaptchaHelper
#cama_captcha_build, #cama_captcha_increment_attack, #cama_captcha_reset_attack, #cama_captcha_tag, #cama_captcha_tags_if_under_attack, #cama_captcha_total_attacks, #cama_captcha_under_attack?, #cama_captcha_verified?, #captcha_verify_if_under_attack
Methods included from CamaleonCms::ContentHelper
#cama_content_after_draw, #cama_content_append, #cama_content_before_draw, #cama_content_init, #cama_content_prepend
Methods included from CamaleonCms::ThemeHelper
#self_theme_key, #theme_asset_file_path, #theme_asset_path, #theme_asset_url, #theme_home_page, #theme_init, #theme_layout, #theme_view
Methods included from CamaleonCms::ShortCodeHelper
#cama_strip_shortcodes, #do_shortcode, #render_shortcode, #shortcode_add, #shortcode_change_template, #shortcode_delete, #shortcodes_init
Methods included from CamaleonCms::UserRolesHelper
Methods included from CamaleonCms::HtmlHelper
#append_asset_content, #append_asset_libraries, #append_pre_asset_content, #cama_assets_library_register, #cama_draw_custom_assets, #cama_draw_pre_asset_contents, #cama_get_options_html_from_items, #cama_html_helpers_init, #cama_html_tooltip, #cama_load_libraries
Methods included from CamaleonCms::SessionHelper
#cama_authenticate, #cama_current_role, #cama_current_user, #cama_get_session_id, #cama_logout_user, #cama_on_heroku?, #cama_register_user, #cama_sign_in?, #cookie_auth_token_complete?, #cookie_split_auth_token, #login_user, #login_user_with_password, #session_back_to_parent, #session_switch_user, #user_auth_token_from_cookie
Instance Method Details
#clean_cache ⇒ Object
24 25 26 27 28 |
# File 'app/apps/plugins/front_cache/admin_controller.rb', line 24 def clean_cache flash[:notice] = t('plugin.front_cache.message.cache_destroyed').to_s front_cache_clean redirect_to(request.referer || '/admin/plugins') end |
#save_settings ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'app/apps/plugins/front_cache/admin_controller.rb', line 10 def save_settings current_site.('front_cache_elements', { paths: (params[:cache][:paths] || []).compact_blank || [], 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.('front_cache_elements')[:cache_counter] || 0 }) flash[:notice] = t('plugin.front_cache.message.settings_saved').to_s redirect_to action: :settings end |
#settings ⇒ Object
5 6 7 8 |
# File 'app/apps/plugins/front_cache/admin_controller.rb', line 5 def settings @caches = current_site.('front_cache_elements', { paths: [] }) @caches[:paths] << '' unless @caches[:paths].present? end |