function _drupal_html_to_mail_urls
Keeps track of URLs and replaces them with placeholder tokens.
Callback for preg_replace_callback() within drupal_html_to_text().
1 call to _drupal_html_to_mail_urls()
- drupal_html_to_text in includes/
mail.inc - Transforms an HTML string into plain text, preserving its structure.
1 string reference to '_drupal_html_to_mail_urls'
- drupal_html_to_text in includes/
mail.inc - Transforms an HTML string into plain text, preserving its structure.
File
-
includes/
mail.inc, line 637
Code
function _drupal_html_to_mail_urls($match = NULL, $reset = FALSE) {
global $base_url, $base_path;
static $urls = array(), $regexp;
if ($reset) {
// Reset internal URL list.
$urls = array();
}
else {
if (empty($regexp)) {
$regexp = '@^' . preg_quote($base_path, '@') . '@';
}
if ($match) {
list(, , $url, $label) = $match;
// Ensure all URLs are absolute.
$urls[] = strpos($url, '://') ? $url : preg_replace($regexp, $base_url . '/', $url);
return $label . ' [' . count($urls) . ']';
}
}
return $urls;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.