Same name and namespace in other branches
  1. 7.x modules/openid/openid.inc \_openid_link_href()

Pull the href attribute out of an html link element.

1 call to _openid_link_href()
openid_discovery in modules/openid/openid.module
Perform discovery on a claimed ID to determine the OpenID provider endpoint.

File

modules/openid/openid.inc, line 197
OpenID utility functions.

Code

function _openid_link_href($rel, $html) {
  $rel = preg_quote($rel);
  preg_match('|<link\\s+rel=["\'](.*)' . $rel . '(.*)["\'](.*)/?>|iUs', $html, $matches);
  if (isset($matches[3])) {
    preg_match('|href=["\']([^"]+)["\']|iU', $matches[3], $href);
    return trim($href[1]);
  }
  return FALSE;
}