You are here

function jquery_social_stream_dribbble_form in jQuery social stream 8.2

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

Dribbble settings form.

File

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

Code

function jquery_social_stream_dribbble_form($conf) {
  $form = array();
  _jquery_social_stream_settings_text($form, $conf, 'id', 'Dribbble ID', '');
  _jquery_social_stream_settings_text($form, $conf, 'intro', 'Feed item intro text', 'Posted shot,Liked');
  _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 type', 'Options available: shots, likes', 'shots,likes');
  return $form;
}