_filter_url_parse_email_links

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="drupal_7-modules-filter-filter-module-function-_filter_url_parse_email_links-mailto:' - $match[$i] - '.html?lang=en">' . $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

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部