You are here

function social_media_links_email_url in Social Media Links Block and Field 7

Callback function to generate the correct url for e-mail links.

1 string reference to 'social_media_links_email_url'
social_media_links_social_media_links_platform_info in ./social_media_links.platforms.inc
Register the default platforms.

File

./social_media_links.platforms.inc, line 91
Callbacks for the platforms.

Code

function social_media_links_email_url($base_url, $platform_value) {
  if (valid_email_address($platform_value)) {
    return 'mailto:' . $platform_value;
  }
  return FALSE;
}