sexybookmarks.inc in Share Buttons, Related Posts, Content Analytics - Shareaholic 7.2
Same filename in this branch
Same filename and directory in other branches
SexyBookmarks module integration.
File
includes/sexybookmarks.incView source
<?php
/**
* @file
* SexyBookmarks module integration.
*/
/**
* Implementation of hook_default_sexybookmarks_profile().
*/
function sexybookmarks_default_sexybookmarks_profile() {
$export = array();
$profile = new stdClass();
$profile->disabled = FALSE;
/* Edit this to true to make a default profile disabled initially */
$profile->api_version = 2;
$profile->name = 'default';
$profile->config = array(
'service' => '5,7,88,2,3,257,74,52,207,191,236,54',
'fbLikeButton' => '0',
'fbButtonPos' => 'bottom-right',
'dontShowShareCount' => '0',
'designer_toolTips' => '1',
'tip_bg_color' => '#000000',
'tip_text_color' => '#FFFFFF',
'rel' => 'nofollow',
'target' => '_blank',
'shrlink' => '1',
'shortener' => 'google',
'twitter_template' => '${title} - ${short_link} via @Shareaholic',
'expand' => 1,
'center' => TRUE,
'spaced' => FALSE,
);
$export['default'] = $profile;
return $export;
}
Functions
Name | Description |
---|---|
sexybookmarks_default_sexybookmarks_profile | Implementation of hook_default_sexybookmarks_profile(). |