You are here

function sexybookmarks_default_sexybookmarks_profile in Share Buttons, Related Posts, Content Analytics - Shareaholic 7.2

Same name and namespace in other branches
  1. 7 includes/sexybookmarks.inc \sexybookmarks_default_sexybookmarks_profile()

Implementation of hook_default_sexybookmarks_profile().

File

includes/sexybookmarks.inc, line 10
SexyBookmarks module integration.

Code

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;
}