function socialmedia_addthis_form in Social media 7
1 string reference to 'socialmedia_addthis_form'
File
- ./
socialmedia.platforms.inc, line 51 - Defines social media platforms
Code
function socialmedia_addthis_form($profile) {
$fields['input_addthis_pubid'] = array(
'#type' => 'textfield',
'#title' => t('AddThis pub id'),
'#default_value' => isset($profile['inputs']['pubid']) ? $profile['inputs']['pubid'] : '',
'#description' => t('This is the pubid used to tie AddThis widgets back to your AddThis account.'),
'#size' => 80,
);
return $fields;
}