Sha256: d1af2e0fa1dc8eeba4467a6a1a4a037fa1c372d923cae3c138b0689e873fd254
Contents?: true
Size: 929 Bytes
Versions: 6
Compression:
Stored size: 929 Bytes
Contents
module Spud module Cms include ActiveSupport::Configurable config_accessor :menus_enabled,:templates_enabled,:root_page_name,:default_page_parts,:yield_body_as_content_block,:default_page_layout,:enable_sitemap,:enable_full_page_caching,:enable_action_caching,:multisite_config self.root_page_name = "home" self.menus_enabled = true self.templates_enabled = false self.default_page_layout = 'application' self.default_page_parts = ["Body"] self.yield_body_as_content_block = false self.enable_full_page_caching = false self.enable_action_caching = false self.enable_sitemap = true self.multisite_config = [] def self.site_config_for_short_name(short_name) configs = Spud::Cms.multisite_config.select{|p| p[:short_name].to_s == short_name.to_s} if configs.blank? return nil else return configs[0] end end end end
Version data entries
6 entries across 6 versions & 1 rubygems