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 Helpers
Helpers::SET_PATTERN_TEST_REGEXP
Instance Method Summary collapse
Methods included from Card::Set
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
#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 Trait
#card_accessor, #card_reader, #card_writer, #require_field
Methods included from Event::Api
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 |