Lines Matching refs:link

42  * @link http://simplepie.org/ SimplePie
733 * Remove items that link back to this before destroying this object
1426 * host supports {@link http://php.net/mbstring mbstring},
1427 * {@link http://php.net/iconv iconv}, or both. See
1428 * {@link http://simplepie.org/wiki/faq/Supported_Character_Encodings} for
1961 * the correct {@link http://www.iana.org/assignments/media-types/ mime-type}
1967 * {@link http://php.net/header header()} function, and these are the
1993 * using {@link http://php.net/language.operators.bitwise bitwise operators}
2093 * @todo Also, |atom:link|@rel=self
2274 * Uses `<xml:base>` if available, otherwise uses the first link in the
2567 * Get a single link for the feed
2570 * @param int $key The link that you want to return. Remember that arrays begin with 0, not 1
2571 * @param string $rel The relationship of the link to return
2587 * Returns the first link available with a relationship of "alternate".
2603 * Uses `<atom:link>` or `<link>`
2613 if ($links = $this->get_channel_tags(self::NAMESPACE_ATOM_10, 'link')) {
2614 foreach ($links as $link) {
2615 if (isset($link['attribs']['']['href'])) {
2616 $link_rel = (isset($link['attribs']['']['rel'])) ? $link['attribs']['']['rel'] : 'alternate';
2617 $this->data['links'][$link_rel][] = $this->sanitize($link['attribs']['']['href'], self::CONSTRUCT_IRI, $this->get_base($link));
2621 if ($links = $this->get_channel_tags(self::NAMESPACE_ATOM_03, 'link')) {
2622 foreach ($links as $link) {
2623 if (isset($link['attribs']['']['href'])) {
2624 $link_rel = (isset($link['attribs']['']['rel'])) ? $link['attribs']['']['rel'] : 'alternate';
2625 $this->data['links'][$link_rel][] = $this->sanitize($link['attribs']['']['href'], self::CONSTRUCT_IRI, $this->get_base($link));
2629 if ($links = $this->get_channel_tags(self::NAMESPACE_RSS_10, 'link')) {
2632 if ($links = $this->get_channel_tags(self::NAMESPACE_RSS_090, 'link')) {
2635 if ($links = $this->get_channel_tags(self::NAMESPACE_RSS_20, 'link')) {
2655 if (isset($this->data['headers']['link'])) {
2656 $link_headers = $this->data['headers']['link'];
2775 * @link http://www.w3.org/2003/01/geo/ W3C WGS84 Basic Geo
2776 * @link http://www.georss.org/ GeoRSS
2798 * @link http://www.w3.org/2003/01/geo/ W3C WGS84 Basic Geo
2799 * @link http://www.georss.org/ GeoRSS
2873 * Get the feed logo's link
2875 * RSS 0.9.0, 1.0 and 2.0 feeds are allowed to have a "feed logo" link. This
2876 * points to a human-readable page that the image should link to.
2885 if ($return = $this->get_image_tags(self::NAMESPACE_RSS_10, 'link')) {
2887 } elseif ($return = $this->get_image_tags(self::NAMESPACE_RSS_090, 'link')) {
2889 } elseif ($return = $this->get_image_tags(self::NAMESPACE_RSS_20, 'link')) {
2897 * Get the feed logo's link
2941 * This is well-suited for {@link http://php.net/for for()} loops with
2961 * This is better suited for {@link http://php.net/for for()} loops, whereas
2963 * {@link http://php.net/foreach foreach()} loops.
2983 * This is better suited for {@link http://php.net/for for()} loops, whereas
2985 * {@link http://php.net/foreach foreach()} loops.
3140 * @link http://simplepie.org/wiki/tutorial/sort_multiple_feeds_by_time_and_date#if_feeds_require_separate_per-feed_settings
3183 if (isset($file->headers['link']['hub']) ||
3184 (isset($file->headers['link']) &&
3185 preg_match('/rel=hub/', $file->headers['link']))) {
3190 if (isset($file->headers['link'])) {
3191 if ($file->headers['link'] !== '') {
3192 $file->headers['link'] = ', ';
3195 $file->headers['link'] = '';
3197 $file->headers['link'] .= '<'.$hub.'>; rel=hub';
3199 $file->headers['link'] .= ', <'.$self.'>; rel=self';