You are here

function jquery_social_stream_flickr_form in jQuery social stream 8

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

Flickr settings form.

File

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

Code

function jquery_social_stream_flickr_form($conf) {
  $form = array();
  _jquery_social_stream_settings_text($form, $conf, 'id', 'Flickr ID ', '<p>Flickr has 2 different ID options:</p>
<dl><dt>Uploads from a specific user name</dt><dd>Enter the required user name</dd><dt>Images from a group</dt><dd>Enter "/" followed by the flickr group ID</dd></dl>', '', 512);
  _jquery_social_stream_settings_text($form, $conf, 'out', 'Output', 'Stream item output: content blocks & order. Available options: intro, thumb, title, text, share', 'intro,thumb,title,text,share');
  _jquery_social_stream_settings_text($form, $conf, 'lang', 'Language', '', 'en-us');
  return $form;
}