function socialmedia_widgets_element_alter_linkedin_share_button in Social media 7
1 call to socialmedia_widgets_element_alter_linkedin_share_button()
File
- ./
socialmedia.widgets.inc, line 919 - Functions needed to execute image elements provided by Image module.
Code
function socialmedia_widgets_element_alter_linkedin_share_button(&$form, $set, $element) {
$data = $element['data'];
$options = array(
'<none>' => t('Small button (no count)'),
'top' => t('Vertical count'),
'right' => t('Horizontal count'),
);
$form['style']['#type'] = 'select';
$form['style']['#options'] = $options;
return $form;
}