function _filter_url_parse_email_links

_filter_url_parse_email_links($match)

Makes links out of email addresses.

Callback for preg_replace_callback() within _filter_url().

Related topics

Standard filters
Filters implemented by the Filter module.

File

core/modules/filter/filter.module, line 607
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] = Html::decodeEntities($match[$i]);
  $caption = Html::escape(_filter_url_trim($match[$i]));
  $match[$i] = Html::escape($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/core!modules!filter!filter.module/function/_filter_url_parse_email_links/8.1.x