Lines Matching refs:url
15 * @param string $url
17 public function __construct($url, Options $options) argument
19 parent::__construct($url, $options);
20 $this->initBaseUrl($url);
21 $this->parseFeed($url);
27 * @param string $url
31 protected function parseFeed($url) argument
34 $feed->set_feed_url($url);
72 * @param string $url
75 protected function makeAbsoluteUrl($url) argument
78 if (!preg_match('/^https?:\/\//i', $url)) {
79 if ($url[0] == '/') {
80 $url = $this->feedHost . $url;
82 $url = $this->feedHost . $this->feedPath . $url;
85 return $url;
90 * @param string $url The feed URL
93 protected function initBaseUrl($url) argument
95 $main = parse_url($url);