Skip to content
Snippets Groups Projects
Verified Commit 0eb8e4d2 authored by Jonas Leder's avatar Jonas Leder
Browse files

add shipping information

parent 5fbd725f
No related branches found
No related tags found
No related merge requests found
Pipeline #2165 passed
...@@ -19,6 +19,11 @@ class sellingTable extends HTMLElement { ...@@ -19,6 +19,11 @@ class sellingTable extends HTMLElement {
"fieldName": "price", "fieldName": "price",
"displayType": "text" "displayType": "text"
}, },
{
"title": "Versand",
"fieldName": "shipping",
"displayType": "text"
},
{ {
"title": "Link", "title": "Link",
"fieldName": "link", "fieldName": "link",
......
...@@ -24,9 +24,16 @@ $ads = $response["{http://www.ebayclassifiedsgroup.com/schema/ad/v1}ads"]["value ...@@ -24,9 +24,16 @@ $ads = $response["{http://www.ebayclassifiedsgroup.com/schema/ad/v1}ads"]["value
foreach($ads as $ad) { foreach($ads as $ad) {
$element = [ $element = [
"title" => $ad["title"]["value"], "title" => $ad["title"]["value"],
"price" => $ad["price"]["amount"]["value"] . " €" "price" => $ad["price"]["amount"]["value"] . " €",
"shipping" => "nein"
]; ];
foreach($ad["attributes"]["attribute"] as $attribute) {
if(str_contains($attribute["name"], "versand")) {
$element["shipping"] = $attribute["value"][0]["value"];
}
}
foreach($ad["link"] as $link) { foreach($ad["link"] as $link) {
if($link["rel"] == "self-public-website") { if($link["rel"] == "self-public-website") {
$element["link"] = $link["href"]; $element["link"] = $link["href"];
......
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