Lines Matching defs:hash
185 * @param string $id the hash link
580 * @param string $hash hash link identifier
583 public function locallink($hash, $name = null)
897 //if there is a hash we use the ancor name only
898 [$name, $hash] = sexplode('#', $name, 2);
899 if ($hash) return $hash;
932 //split into hash and url part
933 $hash = strrchr($reference, '#');
934 if ($hash) {
935 $reference = substr($reference, 0, -strlen($hash));
936 $hash = substr($hash, 1);
981 if ($hash) $url .= '#' . rawurlencode($hash);