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

Merge branch '168-boost-wieder-einbauen' into 'development'

boost wieder eingebaut

Closes #168

See merge request !238
parents e5ee2849 93fab7e7
No related branches found
No related tags found
3 merge requests!261Development,!244Development,!238boost wieder eingebaut
...@@ -259,7 +259,10 @@ class MetaGer ...@@ -259,7 +259,10 @@ class MetaGer
//Slice the collection to get the items to display in current page //Slice the collection to get the items to display in current page
$currentPageSearchResults = $collection->slice($offset * $perPage, $perPage)->all(); $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); $currentPageSearchResults = $this->parseAdgoal($currentPageSearchResults);
//Create our paginator and pass it to the view //Create our paginator and pass it to the view
...@@ -290,6 +293,25 @@ class MetaGer ...@@ -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) public function parseAdgoal($results)
{ {
$publicKey = getenv('adgoal_public'); $publicKey = getenv('adgoal_public');
...@@ -1053,4 +1075,4 @@ class MetaGer ...@@ -1053,4 +1075,4 @@ class MetaGer
{ {
return $this->quicktips; 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