function socialmedia_widgets_element_stumbleupon_badge in Social media 7
1 call to socialmedia_widgets_element_stumbleupon_badge()
- socialmedia_widgets_element_info in ./
socialmedia.widgets.inc - Implements hook_widgets_element_info().
File
- ./
socialmedia.widgets.inc, line 1029 - Functions needed to execute image elements provided by Image module.
Code
function socialmedia_widgets_element_stumbleupon_badge() {
$addthis_js = socialmedia_widgets_element_addthis_js();
$elements['socialmedia_stumbleupon-badge'] = array(
'label' => t('StumbleUpon Badge'),
'group' => t('Social media: StumbleUpon'),
'template' => '<script src="http://www.stumbleupon.com/hostedbadge.php?s=[?style=5?]"></script>',
'form callback' => 'widgets_template_auto_form',
);
return $elements;
}