Sha256: 47ca1e9a8f06af41788d69201fa903512b52fb56e24d8210b0883bd721016b25

Contents?: true

Size: 1.02 KB

Versions: 56

Compression:

Stored size: 1.02 KB

Contents

module RadSocialHelper

  def rad_test_method
    "SURPRISE SURPRISE SURPRISE"
  end

  def rad_share_widget(options)
    url = options[:url].nil? ? request.url : options[:url]
    message = options[:message].nil? ? "Check out #{options[:title]}." : options[:message]
    email_subject = options[:email_subject].nil? ? options[:title] : options[:email_subject]
    email_message = options[:email_message].nil? ? "I thought you might be interested in this: #{url}" : "#{options[:email_message]} #{url}"
    email_action_url = options[:email_action_url].nil? ? "/rad_social/mail" : options[:email_action_url]

    render :partial => "widget/horizontal_widget",
                             :locals => { :url => url,
                                          :message => message,
                                          :email_subject => email_subject,
                                          :email_message => email_message,
                                          :email_action_url => email_action_url
                             }
  end

end

Version data entries

56 entries across 56 versions & 2 rubygems

Version Path
trusty-rad-social-extension-1.1.4 app/helpers/rad_social_helper.rb
trusty-rad-social-extension-1.1.3 app/helpers/rad_social_helper.rb
trusty-rad-social-extension-1.1.2 app/helpers/rad_social_helper.rb
trusty-rad-social-extension-1.1.1 app/helpers/rad_social_helper.rb
trusty-rad-social-extension-1.1.0 app/helpers/rad_social_helper.rb
trusty-rad-social-extension-1.0.10 app/helpers/rad_social_helper.rb
trusty-rad-social-extension-1.0.9 app/helpers/rad_social_helper.rb
trusty-rad-social-extension-1.0.8 app/helpers/rad_social_helper.rb
trusty-rad-social-extension-1.0.7 app/helpers/rad_social_helper.rb
trusty-rad-social-extension-1.0.6 app/helpers/rad_social_helper.rb
trusty-rad-social-extension-1.0.5 app/helpers/rad_social_helper.rb
trusty-rad-social-extension-1.0.4 app/helpers/rad_social_helper.rb
trusty-rad-social-extension-1.0.3 app/helpers/rad_social_helper.rb
trusty-rad-social-extension-1.0.2 app/helpers/rad_social_helper.rb
trusty-rad-social-extension-1.0.1 app/helpers/rad_social_helper.rb
trusty-rad-social-extension-1.0.0 app/helpers/rad_social_helper.rb