function socialmedia_icon_path_levelten_glossy in Social media 7
1 string reference to 'socialmedia_icon_path_levelten_glossy'
File
- ./
socialmedia.icons.inc, line 220 - Functions pertaining to iconset management
Code
function socialmedia_icon_path_levelten_glossy($platform = 'twitter', $style = NULL) {
$style = isset($style) ? $style : '32x32';
$path = drupal_get_path('module', 'socialmedia') . '/icons/levelten/glossy/' . $style . '/' . (isset($pt[$platform]) ? $pt[$platform] : $platform) . '.png';
return $path;
}