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-cms-3.4.0 app/helpers/rad_social_helper.rb
trusty-cms-3.3.7 app/helpers/rad_social_helper.rb
trusty-cms-3.3.6 app/helpers/rad_social_helper.rb
trusty-cms-3.3.5 app/helpers/rad_social_helper.rb
trusty-cms-3.3.3 app/helpers/rad_social_helper.rb
trusty-cms-3.3.2 app/helpers/rad_social_helper.rb
trusty-cms-3.3.1 app/helpers/rad_social_helper.rb
trusty-cms-3.2.1 app/helpers/rad_social_helper.rb
trusty-cms-3.3.0 app/helpers/rad_social_helper.rb
trusty-cms-3.2.0 app/helpers/rad_social_helper.rb
trusty-cms-3.1.11 app/helpers/rad_social_helper.rb
trusty-cms-3.1.10 app/helpers/rad_social_helper.rb
trusty-cms-3.1.9 app/helpers/rad_social_helper.rb
trusty-cms-3.1.8 app/helpers/rad_social_helper.rb
trusty-cms-3.1.7 app/helpers/rad_social_helper.rb
trusty-cms-3.1.6 app/helpers/rad_social_helper.rb
trusty-cms-3.1.5 app/helpers/rad_social_helper.rb
trusty-cms-3.1.3 app/helpers/rad_social_helper.rb
trusty-cms-3.1.2 app/helpers/rad_social_helper.rb
trusty-cms-3.0.11 app/helpers/rad_social_helper.rb