Lines Matching refs:link_id

394 		$link_id = strtolower($matches[1]);
396 $this->urls[$link_id] = $url;
397 $this->titles[$link_id] =& $matches[4];
760 $link_id =& $matches[3];
762 if ($link_id == "") {
764 $link_id = $link_text;
768 $link_id = strtolower($link_id);
769 $link_id = preg_replace('{[ ]?\n}', ' ', $link_id);
771 if (isset($this->urls[$link_id])) {
772 $url = $this->urls[$link_id];
776 if ( isset( $this->titles[$link_id] ) ) {
777 $title = $this->titles[$link_id];
870 $link_id = strtolower($matches[3]);
872 if ($link_id == "") {
873 $link_id = strtolower($alt_text); # for shortcut links like ![this][].
877 if (isset($this->urls[$link_id])) {
878 $url = $this->encodeAttribute($this->urls[$link_id]);
880 if (isset($this->titles[$link_id])) {
881 $title = $this->titles[$link_id];
1888 $link_id = strtolower($matches[1]);
1890 $this->urls[$link_id] = $url;
1891 $this->titles[$link_id] =& $matches[4];
1892 $this->ref_attr[$link_id] = $this->doExtraAttributes("", $dummy =& $matches[5]);
2444 $link_id =& $matches[3];
2446 if ($link_id == "") {
2448 $link_id = $link_text;
2452 $link_id = strtolower($link_id);
2453 $link_id = preg_replace('{[ ]?\n}', ' ', $link_id);
2455 if (isset($this->urls[$link_id])) {
2456 $url = $this->urls[$link_id];
2460 if ( isset( $this->titles[$link_id] ) ) {
2461 $title = $this->titles[$link_id];
2465 if (isset($this->ref_attr[$link_id]))
2466 $result .= $this->ref_attr[$link_id];
2560 $link_id = strtolower($matches[3]);
2562 if ($link_id == "") {
2563 $link_id = strtolower($alt_text); # for shortcut links like ![this][].
2567 if (isset($this->urls[$link_id])) {
2568 $url = $this->encodeAttribute($this->urls[$link_id]);
2570 if (isset($this->titles[$link_id])) {
2571 $title = $this->titles[$link_id];
2575 if (isset($this->ref_attr[$link_id]))
2576 $result .= $this->ref_attr[$link_id];