Skip to content
Snippets Groups Projects
Commit 455e54b1 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Merge branch 'amazon-patch' into 'development'

Amazon entfernt

See merge request !1055
parents a547954d 39ad14b2
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
...@@ -237,9 +237,6 @@ class MetaGer ...@@ -237,9 +237,6 @@ class MetaGer
#Adgoal Implementation #Adgoal Implementation
$this->results = $this->parseAdgoal($this->results); $this->results = $this->parseAdgoal($this->results);
#Amazon Affiliate (MetaGers tag ist: metager04-21)
$this->results = $this->parseAmazon($this->results);
$counter = 0; $counter = 0;
$firstRank = 0; $firstRank = 0;
...@@ -438,34 +435,6 @@ class MetaGer ...@@ -438,34 +435,6 @@ class MetaGer
return $results; return $results;
} }
public function parseAmazon($results)
{
$amazonTag = "metager04-21";
foreach ($results as $result) {
$link = $result->anzeigeLink;
if (strpos($link, "http") !== 0) {
$link = "http://" . $link;
}
$info = parse_url($link);
if(isset($info["host"])){
$host = $info['host'];
$newurl = $link;
if(strpos($host, "amazon") !== FALSE){
# This is Probably an Amazon Link. We'll add our tag as get parameter
if(isset($info["query"])){
$newurl .= "&tag=metager04-21";
}else{
$newurl .= "?tag=metager04-21";
}
$result->link = $newurl;
$result->partnershop = true;
}
}
}
return $results;
}
public function authorize($key) public function authorize($key)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment