_filter_url_parse_full_links($match)
Makes links out of absolute URLs.
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 592
- Framework for handling the filtering of content.
Code
function _filter_url_parse_full_links($match) { // The $i:th parenthesis in the regexp contains the URL. $i = 1; $match[$i] = Html::decodeEntities($match[$i]); $caption = Html::escape(_filter_url_trim($match[$i])); $match[$i] = Html::escape($match[$i]); return '<a href="' . $match[$i] . '">' . $caption . '</a>'; }
Please login to continue.