# -*- coding: utf-8 -*- # # @file # @brief # @author ongaeshi # @date 2012/03/24 require 'milkode/cdweb/lib/database' require 'yaml' require 'i18n' module Milkode class WebSetting DEFAULT_SETTING = { :home_title => "Milkode", :home_icon => "/images/MilkodeIcon135.png", :home_font_size => "100%", :header_title => "Milkode", :header_icon => "/images/MilkodeIcon135.png", :favicon => "/images/favicon.ico", :display_about_milkode => true, :hide_update_button => false, } def self.hash_method(name) define_method(name) do if @data[name] @data[name] else DEFAULT_SETTING[name] end end end def initialize fname = File.join(Database.dbdir, "milkweb.yaml") if FileTest.exist? fname open(fname) do |f| @data = YAML.load(f.read) end else @data = DEFAULT_SETTING end end hash_method :home_title hash_method :home_icon hash_method :home_font_size hash_method :header_title hash_method :header_icon hash_method :favicon def about_milkode(locale) if (@data[:display_about_milkode]) ''+I18n.t(:about_milkode, locale: locale)+'' else '' end end hash_method :hide_update_button end end