You are here

function socialmedia_icon_path_dryicons in Social media 7

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

File

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

Code

function socialmedia_icon_path_dryicons($platform = 'twitter', $style = NULL) {
  $style = isset($style) ? $style : '32x32';
  $pt = array(
    'googleplus' => 'google_plus',
    '',
  );
  $path = drupal_get_path('module', 'socialmedia') . '/icons/dryicons/PNG/' . $style . '/' . (isset($pt[$platform]) ? $pt[$platform] : $platform) . '.png';
  return $path;
}