Module: Card::Set::Type::Setting
- Extended by:
- Card::Set
- Defined in:
- tmpsets/set/mod011-settings/type/setting.rb
Class Method Summary collapse
Instance Method Summary collapse
Methods included from I18nScope
Methods included from Loader
#clean_empty_module_from_hash, #clean_empty_modules, #extended, #pattern_and_modules_from_path, #process_base_modules, #register_set, #tmp_file_template, #write_tmp_file
Methods included from Helpers
#abstract_set?, #all_set?, #shortname
Methods included from AdvancedApi
#attachment, #ensure_set, #stage_method
Methods included from Format
#all_set_format_mod!, #define_on_format, #format, #register_set_format, #view
Methods included from Inheritance
#include_set, #include_set_formats
Methods included from Basket
#abstract_basket, #add_to_basket, #basket
Methods included from Card::Set::Trait
#card_accessor, #card_reader, #card_writer
Methods included from Event
Class Method Details
.member_names ⇒ Object
6 7 8 9 10 11 12 13 14 15 |
# File 'tmpsets/set/mod011-settings/type/setting.rb', line 6 def self.member_names @@member_names ||= begin Card.search( { type_id: SettingID, return: "key" }, "all setting cards" ).each_with_object({}) do |card_key, hash| hash[card_key] = true end end end |
Instance Method Details
#set_classes_with_rules ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'tmpsets/set/mod011-settings/type/setting.rb', line 26 def set_classes_with_rules Card.set_patterns.reverse.map do |set_class| wql = { left: { type: Card::SetID }, right: id, # sort: 'content', sort: %w(content name), limit: 0 } wql[:left][(set_class.anchorless? ? :id : :right_id)] = set_class.pattern_id rules = Card.search wql [set_class, rules] unless rules.empty? end.compact end |