2016-06-13 19:14:58 +02:00

102 lines
2.6 KiB
PHP

<?php
/**
* @file
* social_links.strongarm.inc
*/
/**
* Implements hook_strongarm().
*/
function social_links_strongarm() {
$export = array();
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'social_media_links_appearance';
$strongarm->value = array(
'orientation' => 'h',
'show_name' => 0,
);
$export['social_media_links_appearance'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'social_media_links_icon_style';
$strongarm->value = 'elegantthemes:32';
$export['social_media_links_icon_style'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'social_media_links_link_attributes';
$strongarm->value = array(
'target' => '<none>',
'rel' => '<none>',
);
$export['social_media_links_link_attributes'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'social_media_links_platforms';
$strongarm->value = array(
'facebook' => array(
'platform_value' => 'materiOparis',
'weight' => '-9',
),
'twitter' => array(
'platform_value' => 'materiOParis',
'weight' => '-8',
),
'googleplus' => array(
'platform_value' => '',
'weight' => '-7',
),
'tumblr' => array(
'platform_value' => '',
'weight' => '-6',
),
'instagram' => array(
'platform_value' => '',
'weight' => '-5',
),
'linkedin' => array(
'platform_value' => 'company/3017753',
'weight' => '-4',
),
'pinterest' => array(
'platform_value' => 'hello0691',
'weight' => '-3',
),
'vimeo' => array(
'platform_value' => 'materio',
'weight' => '-2',
),
'youtube' => array(
'platform_value' => '',
'weight' => '-1',
),
'youtube_channel' => array(
'platform_value' => '',
'weight' => '0',
),
'rss' => array(
'platform_value' => '/rss/feed',
'weight' => '1',
),
'contact' => array(
'platform_value' => '',
'weight' => '2',
),
'email' => array(
'platform_value' => '',
'weight' => '3',
),
);
$export['social_media_links_platforms'] = $strongarm;
return $export;
}