function socialmedia_foursquare_tokens in Social media 7
1 string reference to 'socialmedia_foursquare_tokens'
File
- ./
socialmedia.platforms.inc, line 297 - Defines social media platforms
Code
function socialmedia_foursquare_tokens($key, $profile) {
if (empty($profile['url'])) {
return FALSE;
}
switch ($key) {
// Simple key values on the node.
case 'url':
return 'http://' . $profile['url'];
case 'url-brief':
return $profile['url'];
case 'username':
return $profile['username'];
case 'userid':
return $profile['userid'];
}
return '';
}