1 filter.module | _filter_url_parse_email_links($match) |
Makes links out of email addresses.
Callback for preg_replace_callback() within _filter_url().
Related topics
File
- core/
modules/ filter/ filter.module, line 2362 - 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>';
}