You are here

function jquery_social_stream_pinterest_form in jQuery social stream 8

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

Pinterest settings form.

File

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

Code

function jquery_social_stream_pinterest_form($conf) {
  $form = array();
  _jquery_social_stream_settings_text($form, $conf, 'id', 'Pinterest ID', '<p>Pinterest has 2 different ID options:</p>
<dl><dt>Posts for a user name</dt><dd>Enter the required user name</dd><dt>Posts for a specific user board</dt><dd>Enter the user name followed by "/" and then the board name (e.g. <em>designchemical/design-ideas</em>)</dd></dl>', '', 512);
  _jquery_social_stream_settings_text($form, $conf, 'intro', 'Pinned', 'Feed item intro text');
  _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;
}