Skip to content
Snippets Groups Projects
Commit 1193b718 authored by Phil Höfer's avatar Phil Höfer
Browse files

boost wieder eingebaut

parent 02d03932
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
......@@ -259,7 +259,10 @@ class MetaGer
//Slice the collection to get the items to display in current page
$currentPageSearchResults = $collection->slice($offset * $perPage, $perPage)->all();
# Für diese 20 Links folgt nun unsere Adgoal Implementation.
# Für diese 20 Links folgt nun unsere Boost-Implementation.
$currentPageSearchResults = $this->parseBoost($currentPageSearchResults);
# Für diese 20 Links folgt nun unsere Adgoal- Implementation.
$currentPageSearchResults = $this->parseAdgoal($currentPageSearchResults);
//Create our paginator and pass it to the view
......@@ -290,6 +293,25 @@ class MetaGer
}
}
public function parseBoost($results)
{
foreach($results as $result)
{
if(preg_match('/^(http[s]?\:\/\/)?(www.)?amazon\.de/',$result->anzeigeLink))
{
if(preg_match('/\?/',$result->anzeigeLink))
{
$result->link .= '&tag=boostmg01-21';
} else
{
$result->link .= '?tag=boostmg01-21';
}
$result->partnershop = true;
}
}
return $results;
}
public function parseAdgoal($results)
{
$publicKey = getenv('adgoal_public');
......@@ -1053,4 +1075,4 @@ class MetaGer
{
return $this->quicktips;
}
}
\ No newline at end of file
}
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