Module: Card::Set::Type::Setting

Extended by:
Card::Set
Defined in:
tmpsets/set/mod012-settings/type/setting.rb

Constant Summary

Constants included from Helpers

Helpers::SET_PATTERN_TEST_REGEXP

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Card::Set

reset_modules

Methods included from I18nScope

#mod_name, #scope

Methods included from Loader

#clean_empty_module_from_hash, #clean_empty_modules, #extended, #process_base_modules, #register_set

Methods included from Helpers

#method_missing, #num_set_parts, #pattern_code, #respond_to_missing?, #set_name_parts, #shortname, #underscore

Methods included from AdvancedApi

#attachment, #ensure_set, #stage_method

Methods included from Format

#before, #format, layout_method_name, #view, view_method_name, view_setting_method_name, wrapper_method_name

Methods included from Inheritance

#include_set, #include_set_formats

Methods included from Basket

#abstract_basket, #add_to_basket, #basket, #unshift_basket

Methods included from Card::Set::Trait

#card_accessor, #card_reader, #card_writer, #require_field

Methods included from Event::Api

#event

Class Method Details

.member_namesObject



6
7
8
9
10
11
12
13
14
15
# File 'tmpsets/set/mod012-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_rulesObject



26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'tmpsets/set/mod012-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