You are here

function _shortener_url_parse_partial_links in Shorten URLs 7

Same name and namespace in other branches
  1. 6 shortener/shortener.module \_shortener_url_parse_partial_links()
  2. 7.2 shortener/shortener.module \_shortener_url_parse_partial_links()

Processes matches on partial URLs and returns the "fixed" version.

1 string reference to '_shortener_url_parse_partial_links'
_shortener_filter_url in shortener/shortener.module
Replaces URLs with the shortened version.

File

shortener/shortener.module, line 66
Provides an input filter that replaces URLs with a shortened version.

Code

function _shortener_url_parse_partial_links($match) {
  return _shortener_url_behavior($match, TRUE);
}