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