_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
1 2 3 4 5 6 7 8 9 | 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>' ; } |
Please login to continue.