function _addtoany_create_button in AddToAny Share Buttons 5.0
Same name and namespace in other branches
- 5.2 addtoany.module \_addtoany_create_button()
- 6.3 addtoany.module \_addtoany_create_button()
- 6.2 addtoany.module \_addtoany_create_button()
- 7 addtoany.module \_addtoany_create_button()
- 7.3 addtoany.module \_addtoany_create_button()
Internal function to generate code for AddToAny button
Return value
String containing html code for the button
2 calls to _addtoany_create_button()
- addtoany_block_view in ./
addtoany.module - Implements hook_block_view().
- addtoany_node_view in ./
addtoany.module - Implementation of hook_node_view().
File
- ./
addtoany.module, line 165 - Stand alone module file to handle AddToAny button integration
Code
function _addtoany_create_button($node = NULL, $teaser = FALSE) {
global $_addtoany_counter, $base_path;
$_addtoany_counter++;
if ($_addtoany_counter == 1) {
drupal_add_css(drupal_get_path('module', 'addtoany') . '/addtoany.css');
}
_addtoany_create_script($node);
$disable_dropdown = variable_get('addtoany_dropdown_disabled', '0');
if (is_object($node)) {
$link_name = rawurlencode($node->title[LANGUAGE_NONE][0]['value']);
$link_url = rawurlencode(url('node/' . $node->nid, array(
'absolute' => 1,
)));
}
else {
// Front page
$link_name = rawurlencode(variable_get('page_title_front', variable_get('site_name', '')));
$link_url = rawurlencode(url('<front>', array(
'absolute' => 1,
)));
}
$button_setting = variable_get('addtoany_image', 'share_save_171_16.png|171|16');
if ($button_setting == "custom") {
$button_image = variable_get('addtoany_custom_image', '');
$button_width = '';
$button_height = '';
}
else {
$button = explode('|', $button_setting);
$button_filename = $button[0];
$button_width = ' width="' . $button[1] . '"';
$button_height = ' height="' . $button[2] . '"';
$button_image = $base_path . drupal_get_path('module', 'addtoany') . '/images/' . $button_filename;
}
return sprintf('
<a%s href="http://www.addtoany.com/share_save?linkurl=%s&linkname=%s"><img src="%s"%s%s %s/></a>
', $disable_dropdown ? '' : ' class="a2a_dd"', $link_url, $link_name, $button_image, $button_width, $button_height, variable_get('addtoany_image_attributes', 'alt="Share/Save"'));
}