function hook_rrssb_buttons_alter in Ridiculously Responsive Social Sharing Buttons 7.2
Same name and namespace in other branches
- 8.2 rrssb.api.php \hook_rrssb_buttons_alter()
- 7 rrssb.api.php \hook_rrssb_buttons_alter()
Alter the configuration for social share buttons provided by other modules.
Parameters
$buttons Existing button configration, see @hook_rrssb_buttons.:
1 invocation of hook_rrssb_buttons_alter()
- rrssb_settings in ./
rrssb.module - Fetch buttons settings.
File
- ./
rrssb.api.php, line 35 - Hooks provided by the Ridiculously Responsive Social Share Buttons module.
Code
function hook_rrssb_buttons_alter(&$buttons) {
// Set the email button follow action to link to the simplenews subscribe page.
if (module_exists('simplenews')) {
$buttons['email']['follow_url'] = '/newsletter/subscriptions';
$buttons['email']['title_follow'] = 'subscribe';
}
}