You are here

function socialmedia_icon_path_icondock in Social media 7

1 string reference to 'socialmedia_icon_path_icondock'
socialmedia_socialmedia_iconset_info in ./socialmedia.icons.inc

File

./socialmedia.icons.inc, line 236
Functions pertaining to iconset management

Code

function socialmedia_icon_path_icondock($platform = 'twitter', $style = NULL) {
  $style = isset($style) ? $style : '32px';
  $t = array(
    'googleplus' => 'google-plus',
  );
  $path = drupal_get_path('module', 'socialmedia') . '/icons/icondock/Vector Social Media Icons/png/' . $style . '/' . (isset($t[$platform]) ? $t[$platform] : $platform) . '.png';
  return $path;
}