mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-01-29 11:58:23 +01:00
Humble Store bridge now with thumbnail
This commit is contained in:
parent
e62db154a4
commit
b0ce5bdc81
9
bridges/HumbleStoreDiscountBridge.php
Normal file → Executable file
9
bridges/HumbleStoreDiscountBridge.php
Normal file → Executable file
@ -29,10 +29,12 @@ class HumbleStoreDiscountBridge extends BridgeAbstract{
|
||||
$product_uri = $store_link . $value['machine_name'];
|
||||
$platforms = str_replace('\'', '', implode("','", $value['platforms']));
|
||||
$delivery_methods = str_replace('\'', '', implode("','", $value['delivery_methods']));
|
||||
$thumbnail = 'https://www.humblebundle.com' . $value['storefront_featured_image_small'];
|
||||
|
||||
$content = '<b>' . $product_name . '</b><br/><b>Current price:</b> ' . $new_price . '<br/><b>Full price:</b> ' . $full_price
|
||||
. '<br/><b>Delivery methods:</b> ' . $delivery_methods . '<br/><b>Platforms:</b> '
|
||||
. $platforms . '<br/>' . $value['description'];
|
||||
$content = '<img src="' . $thumbnail . '" alt="' . $value['storefront_featured_image_small'] . '"><br/><br/><b>' . $product_name
|
||||
. '</b><br/><br/><b>Current price:</b> ' . $new_price . '<br/><b>Full price:</b> ' . $full_price
|
||||
. '<br/><b>Developer:</b> ' . $value['developer_name'] . '<br/><b>Delivery methods:</b> ' . $delivery_methods
|
||||
. '<br/><b>Platforms:</b> ' . $platforms . '<br/>' . $value['description'];
|
||||
|
||||
$item = new \Item();
|
||||
$item->title = $product_name . ' - ' . $new_price;
|
||||
@ -56,4 +58,3 @@ class HumbleStoreDiscountBridge extends BridgeAbstract{
|
||||
return 21600; // 6 hours
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user