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)
894 //if there is a hash we use the ancor name only
895 [$name, $hash] = sexplode('#', $name, 2);
896 if ($hash) return $hash;
929 //split into hash and url part
930 $hash = strrchr($reference, '#');
931 if ($hash) {
932 $reference = substr($reference, 0, -strlen($hash));
933 $hash = substr($hash, 1);
978 if ($hash) $url .= '#' . rawurlencode($hash);