social_links.strongarm.inc 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. /**
  3. * @file
  4. * social_links.strongarm.inc
  5. */
  6. /**
  7. * Implements hook_strongarm().
  8. */
  9. function social_links_strongarm() {
  10. $export = array();
  11. $strongarm = new stdClass();
  12. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  13. $strongarm->api_version = 1;
  14. $strongarm->name = 'social_media_links_appearance';
  15. $strongarm->value = array(
  16. 'orientation' => 'h',
  17. 'show_name' => 0,
  18. );
  19. $export['social_media_links_appearance'] = $strongarm;
  20. $strongarm = new stdClass();
  21. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  22. $strongarm->api_version = 1;
  23. $strongarm->name = 'social_media_links_icon_style';
  24. $strongarm->value = 'elegantthemes:32';
  25. $export['social_media_links_icon_style'] = $strongarm;
  26. $strongarm = new stdClass();
  27. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  28. $strongarm->api_version = 1;
  29. $strongarm->name = 'social_media_links_link_attributes';
  30. $strongarm->value = array(
  31. 'target' => '<none>',
  32. 'rel' => '<none>',
  33. );
  34. $export['social_media_links_link_attributes'] = $strongarm;
  35. $strongarm = new stdClass();
  36. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  37. $strongarm->api_version = 1;
  38. $strongarm->name = 'social_media_links_platforms';
  39. $strongarm->value = array(
  40. 'facebook' => array(
  41. 'platform_value' => 'materiOparis',
  42. 'weight' => '-9',
  43. ),
  44. 'twitter' => array(
  45. 'platform_value' => 'materiOParis',
  46. 'weight' => '-8',
  47. ),
  48. 'googleplus' => array(
  49. 'platform_value' => '',
  50. 'weight' => '-7',
  51. ),
  52. 'tumblr' => array(
  53. 'platform_value' => '',
  54. 'weight' => '-6',
  55. ),
  56. 'instagram' => array(
  57. 'platform_value' => '',
  58. 'weight' => '-5',
  59. ),
  60. 'linkedin' => array(
  61. 'platform_value' => 'company/3017753',
  62. 'weight' => '-4',
  63. ),
  64. 'pinterest' => array(
  65. 'platform_value' => 'hello0691',
  66. 'weight' => '-3',
  67. ),
  68. 'vimeo' => array(
  69. 'platform_value' => 'materio',
  70. 'weight' => '-2',
  71. ),
  72. 'youtube' => array(
  73. 'platform_value' => '',
  74. 'weight' => '-1',
  75. ),
  76. 'youtube_channel' => array(
  77. 'platform_value' => '',
  78. 'weight' => '0',
  79. ),
  80. 'rss' => array(
  81. 'platform_value' => '/rss/feed',
  82. 'weight' => '1',
  83. ),
  84. 'contact' => array(
  85. 'platform_value' => '',
  86. 'weight' => '2',
  87. ),
  88. 'email' => array(
  89. 'platform_value' => '',
  90. 'weight' => '3',
  91. ),
  92. );
  93. $export['social_media_links_platforms'] = $strongarm;
  94. return $export;
  95. }