Module: Card::Set::Right::Followers
- Extended by:
- Card::Set
- Includes:
- Type::Pointer
- Defined in:
- tmpsets/set/mod013-email/right/followers.rb
Constant Summary
Constants included from Format
Instance Method Summary collapse
Methods included from I18nScope
Methods included from Loader
#clean_empty_module_from_hash, #clean_empty_modules, #extended, #process_base_modules, #register_set
Methods included from Helpers
#abstract_set?, #all_set?, #num_set_parts, #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 Trait
#card_accessor, #card_reader, #card_writer
Methods included from Event
Instance Method Details
#raw_content ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'tmpsets/set/mod013-email/right/followers.rb', line 8 def raw_content if left items = if (left.type_id == SetID) || (left.type_id == CardtypeID) set_card = left.default_follow_set_card set_card.all_user_ids_with_rule_for(:follow).map do |user_id| if left.followed_by?(user_id) && (user = Card.find(user_id)) user.name end end.compact else left.follower_names end items.map { |item| "[[#{item}]]" }.join "\n" else "" end end |
#virtual? ⇒ Boolean
27 28 29 |
# File 'tmpsets/set/mod013-email/right/followers.rb', line 27 def virtual? !real? end |