On this page
function _filter_url_parse_email_links
_filter_url_parse_email_links($match)
Makes links out of e-mail addresses.
Callback for preg_replace_callback() within _filter_url().
Related topics
File
- modules/filter/filter.module, line 1589
- Framework for handling the filtering of content.
Code
function _filter_url_parse_email_links($match) {
// The $i:th parenthesis in the regexp contains the URL.
$i = 0;
$match[$i] = decode_entities($match[$i]);
$caption = check_plain(_filter_url_trim($match[$i]));
$match[$i] = check_plain($match[$i]);
return '<a href="mailto:' . $match[$i] . '">' . $caption . '</a>';
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!filter!filter.module/function/_filter_url_parse_email_links/7.x