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

Amazon entfernt

parent 3e5101ff
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
......@@ -237,9 +237,6 @@ class MetaGer
#Adgoal Implementation
$this->results = $this->parseAdgoal($this->results);
#Amazon Affiliate (MetaGers tag ist: metager04-21)
$this->results = $this->parseAmazon($this->results);
$counter = 0;
$firstRank = 0;
......@@ -438,34 +435,6 @@ class MetaGer
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)
{
......
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