You are here

sexybookmarks.inc in Share Buttons, Related Posts, Content Analytics - Shareaholic 7.2

Same filename in this branch
  1. 7.2 includes/sexybookmarks.inc
  2. 7.2 plugins/content_types/sexybookmarks.inc
Same filename and directory in other branches
  1. 7 includes/sexybookmarks.inc

SexyBookmarks module integration.

File

includes/sexybookmarks.inc
View 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

Namesort descending Description
sexybookmarks_default_sexybookmarks_profile Implementation of hook_default_sexybookmarks_profile().