function socialmedia_rss_form in Social media 7
1 string reference to 'socialmedia_rss_form'
File
- ./
socialmedia.platforms.inc, line 678 - Defines social media platforms
Code
function socialmedia_rss_form($profile) {
$fields['input_rss_url'] = array(
'#type' => 'textfield',
'#title' => t('RSS url'),
'#default_value' => isset($profile['inputs']['url']) ? $profile['inputs']['url'] : 'rss.xml',
'#description' => t('This is the url to your rss feed. The default feed is located at rss.xml but you might want to link to another feed.'),
'#size' => 80,
);
return $fields;
}