You are here

function socialmedia_icon_path_arbent_grunge in Social media 7

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

File

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

Code

function socialmedia_icon_path_arbent_grunge($platform = 'twitter', $style = NULL) {
  $style = isset($style) ? $style : '32x32';
  $pt = array(
    'email' => 'mail',
  );
  $path = drupal_get_path('module', 'socialmedia') . '/icons/arbent/grunge/' . $style . '/' . (isset($pt[$platform]) ? $pt[$platform] : $platform) . '.png';
  return $path;
}