You are here

function jquery_social_stream_stumbleupon_form in jQuery social stream 8

Same name and namespace in other branches
  1. 8.2 jquery_social_stream.module \jquery_social_stream_stumbleupon_form()
  2. 7.2 jquery_social_stream.module \jquery_social_stream_stumbleupon_form()
  3. 7 jquery_social_stream.module \jquery_social_stream_stumbleupon_form()

Stumbleupon settings form.

File

./jquery_social_stream.module, line 630
Code for the Campaign social media module.

Code

function jquery_social_stream_stumbleupon_form($conf) {
  $form = array();
  _jquery_social_stream_settings_text($form, $conf, 'id', 'Stumbleupon usernames', 'You can enter multiple usernames separated by comma.', '', 512);
  _jquery_social_stream_settings_text($form, $conf, 'intro', 'Feed item intro text', 'Shared,Reviewed');
  _jquery_social_stream_settings_text($form, $conf, 'out', 'Output', 'Stream item output: content blocks & order. Available options: intro, thumb, title, text, user, share', 'intro,thumb,title,text,user,share');
  _jquery_social_stream_settings_text($form, $conf, 'feed', 'Feed', '<p>Options available:</p><dl><dt>favorites</dt><dd>The sites you thumbed up</dd><dt>reviews</dt><dd>Reviews you have written</dd>', 'favorites,reviews');
  return $form;
}