You are here

function jquery_social_stream_delicious_form in jQuery social stream 8.2

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

Delicious settings form.

File

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

Code

function jquery_social_stream_delicious_form($conf) {
  $form = array();
  _jquery_social_stream_settings_text($form, $conf, 'id', 'Delicious usernames', 'You can enter multiple usernames separated by comma.', '', 512);
  _jquery_social_stream_settings_text($form, $conf, 'intro', 'Feed item intro text', '', 'Bookmarked');
  _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');
  return $form;
}