Files
kupshop/bundles/External/ZNZBundle/Resources/script/FixBlockPhotosScript.php
2025-08-02 16:30:27 +02:00

109 lines
49 KiB
PHP
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
declare(strict_types=1);
namespace External\ZNZBundle\Resources\script;
use KupShop\AdminBundle\Util\Script\Script;
use KupShop\ContentBundle\Util\Block;
use KupShop\KupShopBundle\Util\Compat\ServiceContainer;
use KupShop\KupShopBundle\Util\Functional\Mapping;
use Query\Operator;
class FixBlockPhotosScript extends Script
{
private const URL_ORIGIN = 'https://fragranza.wpjshop.cz';
protected static $name = '[ZNZ] Fix block photos';
protected function run(array $arguments)
{
$qb = sqlQueryBuilder()
->select('id, json_content')
->from('blocks')
->where(Operator::like(['json_content' => '%photo%']));
$photos = Mapping::mapKeys(json_decode($this->getData()['photos'], true), fn ($k, $v) => [$v['id'], $v]);
foreach ($qb->execute() as $item) {
$data = json_decode($item['json_content'], true);
$isModified = false;
$this->recursivelyFixPhotos($data, $isModified, $photos);
if ($isModified) {
$this->updateBlockContent($item['id'], json_encode($data));
}
}
}
private function updateBlockContent(int $blockId, string $data): void
{
$result = $this->getBlockUtil()->renderBlock($data);
if ($result['success'] ?? false) {
sqlQueryBuilder()
->update('blocks')
->directValues(
[
'content' => $result['html'],
'json_content' => $data,
]
)
->where(Operator::equals(['id' => $blockId]))
->execute();
}
}
private function recursivelyFixPhotos(array &$data, bool &$isModified, array $photos): void
{
foreach ($data as &$item) {
if ($item['type'] === 'image') {
if (($item['settings']['photo'] ?? false) && !empty($photos[$item['settings']['photo']['id']])) {
$photo = $photos[$item['settings']['photo']['id']];
$url = self::URL_ORIGIN.'/data/photos/'.$photo['source'].$photo['image_2'];
if ($photoId = $this->getDownloader()->importProductImage($url)) {
$item['settings']['photo']['id'] = (int) $photoId;
$isModified = true;
}
}
}
if ($item['children'] ?? false) {
$this->recursivelyFixPhotos($item['children'], $isModified, $photos);
}
}
}
private function getData(): array
{
return [
'photos' => '[{"id":60042,"filename":"Snímek obrazovky 2023-06-16 v 8.29.10 (full).png","descr":"Fiona Franchimon Hairpin no.1","source":"2023/06/","image_2":"p60042.png","image_tablet":null,"image_mobile":null,"date":"2023-06-16 08:30:34","sync_id":"","date_update":"2023-06-16 08:31:37"},{"id":60043,"filename":"Brown_Beige_Simple_Special_Sale_Banner (full).jpg","descr":"","source":"2023/06/","image_2":"p60043.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-16 08:37:04","sync_id":"","date_update":"2023-06-16 08:37:04"},{"id":60053,"filename":"No4711_banner-2 (full).png","descr":"","source":"2023/06/","image_2":"p60053.png","image_tablet":null,"image_mobile":null,"date":"2023-06-29 10:39:47","sync_id":"","date_update":"2023-06-29 10:39:47"},{"id":60055,"filename":"about-prodejna (full).jpg","descr":"","source":"2023/06/","image_2":"p60055.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 10:46:09","sync_id":"","date_update":"2023-06-29 10:46:09"},{"id":60056,"filename":"about-pokladna (full).jpg","descr":"","source":"2023/06/","image_2":"p60056.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 10:46:30","sync_id":"","date_update":"2023-06-29 10:46:30"},{"id":60057,"filename":"about-vyloha (full).jpg","descr":"","source":"2023/06/","image_2":"p60057.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 10:46:47","sync_id":"","date_update":"2023-06-29 10:46:47"},{"id":60058,"filename":"Abercrombie_and_Fitch_banner (full).jpg","descr":"","source":"2023/06/","image_2":"p60058.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 10:48:28","sync_id":"","date_update":"2023-06-29 10:48:28"},{"id":60059,"filename":"mydentity_banner-2 (full).jpg","descr":"","source":"2023/06/","image_2":"p60059.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 12:44:46","sync_id":"","date_update":"2023-06-29 12:44:46"},{"id":60060,"filename":"AcquaDiParma_banner_1 (full).jpg","descr":"","source":"2023/06/","image_2":"p60060.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 13:11:37","sync_id":"","date_update":"2023-06-29 13:11:37"},{"id":60061,"filename":"ACP modra mala (full).jpg","descr":"","source":"2023/06/","image_2":"p60061.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 13:24:29","sync_id":"","date_update":"2023-06-29 13:24:29"},{"id":60062,"filename":"afnan-1440x530_banner (full).jpg","descr":"","source":"2023/06/","image_2":"p60062.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 13:40:35","sync_id":"","date_update":"2023-06-29 13:40:35"},{"id":60063,"filename":"Agave_banner (full).jpg","descr":"","source":"2023/06/","image_2":"p60063.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 13:52:49","sync_id":"","date_update":"2023-06-29 13:52:49"},{"id":60064,"filename":"AlHaramain_banner_1 (full).jpg","descr":"","source":"2023/06/","image_2":"p60064.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 14:01:36","sync_id":"","date_update":"2023-06-29 14:01:36"},{"id":60065,"filename":"algologie_banner (full).png","descr":"","source":"2023/06/","image_2":"p60065.png","image_tablet":null,"image_mobile":null,"date":"2023-06-29 14:10:28","sync_id":"","date_update":"2023-06-29 14:10:28"},{"id":60066,"filename":"Alterna_banner (full).png","descr":"","source":"2023/06/","image_2":"p60066.png","image_tablet":null,"image_mobile":null,"date":"2023-06-29 14:46:15","sync_id":"","date_update":"2023-06-29 14:46:15"},{"id":60067,"filename":"Amouage_banner_1 (full).jpg","descr":"","source":"2023/06/","image_2":"p60067.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 15:01:18","sync_id":"","date_update":"2023-06-29 15:01:18"},{"id":60068,"filename":"Armaf_banner-2 (full).jpg","descr":"","source":"2023/06/","image_2":"p60068.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 15:12:51","sync_id":"","date_update":"2023-06-29 15:12:51"},{"id":60069,"filename":"GiorgioArmani_banner (full).png","descr":"","source":"2023/06/","image_2":"p60069.png","image_tablet":null,"image_mobile":null,"date":"2023-06-29 15:19:12","sync_id":"","date_update":"2023-06-29 15:19:12"},{"id":60070,"filename":"Artdeco_banner (full).jpg","descr":"","source":"2023/06/","image_2":"p60070.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 15:29:57","sync_id":"","date_update":"2023-06-29 15:29:57"},{"id":60071,"filename":"BBmessopen_banner (full).jpg","descr":"","source":"2023/06/","image_2":"p60071.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 15:59:19","sync_id":"","date_update":"2023-06-29 15:59:19"},{"id":60072,"filename":"skin_bar-2 (full).jpg","descr":"","source":"2023/06/","image_2":"p60072.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 16:12:50","sync_id":"","date_update":"2023-06-29 16:12:50"},{"id":60073,"filename":"FF_Hairpin_banner-2 (full).jpg","descr":"","source":"2023/06/","image_2":"p60073.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 16:24:00","sync_id":"","date_update":"2023-06-29 16:24:00"},{"id":60074,"filename":"DiAngelo_banner2 (full).jpg","descr":"","source":"2023/06/","image_2":"p60074.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 16:31:15","sync_id":"","date_update":"2023-06-29 16:31:15"},{"id":60075,"filename":"eight&bob-1440x530_banner_2 (full).jpg","descr":"","source":"2023/06/","image_2":"p60075.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 16:42:41","sync_id":"","date_update":"2023-06-29 16:42:41"},{"id":60076,"filename":"Roja_banner (full).jpg","descr":"","source":"2023/06/","image_2":"p60076.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-29 16:51:14","sync_id":"","date_update":"2023-06-29 16:51:14"},{"id":60077,"filename":"60056_107 (full).jpg","descr":"","source":"2023/06/","image_2":"p60077.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-30 16:00:12","sync_id":"","date_update":"2023-06-30 16:00:12"},{"id":60078,"filename":"fragranza foto-2 (full).jpg","descr":"","source":"2023/06/","image_2":"p60078.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-30 16:00:44","sync_id":"","date_update":"2023-06-30 16:00:44"},{"id":60079,"filename":"dermalogica_DynamicSkin_banner-2 (full).jpg","descr":"","source":"2023/06/","image_2":"p60079.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-30 16:14:12","sync_id":"","date_update":"2023-06-30 16:14:12"},{"id":60080,"filename":"derma facemapping1 (full).jpg","descr":"","source":"2023/06/","image_2":"p60080.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-30 16:32:36","sync_id":"","date_update":"2023-06-30 16:32:36"},{"id":60082,"filename":"maly_na_web_2-2 (full).jpg","descr":"","source":"2023/06/","image_2":"p60082.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-06-30 17:42:34","sync_id":"","date_update":"2023-06-30 17:42:34"},{"id":60083,"filename":"Stayve_banner (full).png","descr":"","source":"2023/06/","image_2":"p60083.png","image_tablet":null,"image_mobile":null,"date":"2023-06-30 18:03:50","sync_id":"","date_update":"2023-06-30 18:03:50"},{"id":60087,"filename":"Pariscollec-2 (full).jpeg","descr":"","source":"2023/07/","image_2":"p60087.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 10:18:56","sync_id":"","date_update":"2023-07-07 10:18:56"},{"id":60089,"filename":"StrangeLove_banner2 (full).jpg","descr":"","source":"2023/07/","image_2":"p60089.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 10:27:37","sync_id":"","date_update":"2023-07-07 10:27:37"},{"id":60090,"filename":"DSCF1483-2 (full).jpg","descr":"","source":"2023/07/","image_2":"p60090.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 10:35:31","sync_id":"","date_update":"2023-07-07 10:35:31"},{"id":60091,"filename":"Atkinsons_banner.jpg","descr":"","source":"2023/07/","image_2":"p60091.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 10:55:21","sync_id":"","date_update":"2023-07-07 10:55:21"},{"id":60092,"filename":"PerriconeMD_banner_1-2 (full).jpg","descr":"","source":"2023/07/","image_2":"p60092.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 10:56:44","sync_id":"","date_update":"2023-07-07 10:56:44"},{"id":60093,"filename":"topseelery-2 (full).jpg","descr":"","source":"2023/07/","image_2":"p60093.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 10:59:34","sync_id":"","date_update":"2023-07-07 10:59:34"},{"id":60094,"filename":"Produktov_navigace_Perricone_MD_2022_kopie-2 (full).jpg","descr":"","source":"2023/07/","image_2":"p60094.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 11:01:14","sync_id":"","date_update":"2023-07-07 11:01:14"},{"id":60095,"filename":"omorovicza-znacka-banner (full).jpg","descr":"","source":"2023/07/","image_2":"p60095.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 11:09:08","sync_id":"","date_update":"2023-07-07 11:09:08"},{"id":60096,"filename":"original-The_institute-034440-2 (full).jpg","descr":"","source":"2023/07/","image_2":"p60096.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 11:11:41","sync_id":"","date_update":"2023-07-07 11:11:41"},{"id":60097,"filename":"original-DESKTOP_1920x600px_v2-120215 (full).jpg","descr":"","source":"2023/07/","image_2":"p60097.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 11:13:29","sync_id":"","date_update":"2023-07-07 11:13:29"},{"id":60099,"filename":"banner thoo-2 (full).jpg","descr":"","source":"2023/07/","image_2":"p60099.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 11:49:59","sync_id":"","date_update":"2023-07-07 11:49:59"},{"id":60102,"filename":"hair washing (full).jpg","descr":"","source":"2023/07/","image_2":"p60102.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 12:01:20","sync_id":"","date_update":"2023-07-07 12:01:20"},{"id":60103,"filename":"_DSC7766 (full).jpg","descr":"","source":"2023/07/","image_2":"p60103.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 12:16:09","sync_id":"","date_update":"2023-07-07 12:16:09"},{"id":60104,"filename":"ala2_mala-4-2 (full).jpg","descr":"","source":"2023/07/","image_2":"p60104.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 12:21:05","sync_id":"","date_update":"2023-07-07 12:21:05"},{"id":60106,"filename":"Snímek obrazovky 2023-07-07 v 12.32.09-2 (full).png","descr":"","source":"2023/07/","image_2":"p60106.png","image_tablet":null,"image_mobile":null,"date":"2023-07-07 12:34:02","sync_id":"","date_update":"2023-07-07 12:34:02"},{"id":60108,"filename":"Burdin Soir d Or (full).jpg","descr":"","source":"2023/07/","image_2":"p60108.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 12:53:47","sync_id":"","date_update":"2023-07-07 12:53:47"},{"id":60109,"filename":"Carure (full).jpg","descr":"","source":"2023/07/","image_2":"p60109.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 12:54:08","sync_id":"","date_update":"2023-07-07 12:54:08"},{"id":60110,"filename":"tinoutcha (full).jpg","descr":"","source":"2023/07/","image_2":"p60110.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 12:55:09","sync_id":"","date_update":"2023-07-07 12:55:09"},{"id":60111,"filename":"Burdin skupina (full).jpg","descr":"","source":"2023/07/","image_2":"p60111.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 12:55:35","sync_id":"","date_update":"2023-07-07 12:55:35"},{"id":60112,"filename":"emme moi (full).jpg","descr":"","source":"2023/07/","image_2":"p60112.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-07 12:57:12","sync_id":"","date_update":"2023-07-07 12:57:12"},{"id":60114,"filename":"AgentProvocateur_banner (full).jpg","descr":"","source":"2023/07/","image_2":"p60114.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-10 08:52:57","sync_id":"","date_update":"2023-07-10 08:52:57"},{"id":60115,"filename":"AignerEtienne_banner (full).jpg","descr":"","source":"2023/07/","image_2":"p60115.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-10 09:07:04","sync_id":"","date_update":"2023-07-10 09:07:04"},{"id":60116,"filename":"AlexandreJ_banner (full).jpg","descr":"","source":"2023/07/","image_2":"p60116.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-10 09:24:50","sync_id":"","date_update":"2023-07-10 09:24:50"},{"id":60117,"filename":"AmericanCrew_banner (full).jpg","descr":"","source":"2023/07/","image_2":"p60117.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-10 09:51:48","sync_id":"","date_update":"2023-07-10 09:51:48"},{"id":60118,"filename":"AmouroudParfums_banner (full).jpg","descr":"","source":"2023/07/","image_2":"p60118.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-10 10:16:18","sync_id":"","date_update":"2023-07-10 10:16:18"},{"id":60119,"filename":"AntonioBanderas_banner (full).jpg","descr":"","source":"2023/07/","image_2":"p60119.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-10 10:34:40","sync_id":"","date_update":"2023-07-10 10:34:40"},{"id":60120,"filename":"AntonioPuig_banner.jpg","descr":"","source":"2023/07/","image_2":"p60120.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-10 13:52:21","sync_id":"","date_update":"2023-07-10 13:52:21"},{"id":60121,"filename":"Baldessarini_banner.jpg","descr":"","source":"2023/07/","image_2":"p60121.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-10 13:56:23","sync_id":"","date_update":"2023-07-10 13:56:23"},{"id":60122,"filename":"AttarCollection_banner.jpg","descr":"","source":"2023/07/","image_2":"p60122.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-10 15:03:20","sync_id":"","date_update":"2023-07-10 15:03:20"},{"id":60123,"filename":"Azzaro_banner.jpg","descr":"","source":"2023/07/","image_2":"p60123.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-10 15:44:16","sync_id":"","date_update":"2023-07-10 15:44:16"},{"id":60124,"filename":"BDKParfums_banner.jpg","descr":"","source":"2023/07/","image_2":"p60124.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-11 08:54:25","sync_id":"","date_update":"2023-07-11 08:54:25"},{"id":60125,"filename":"Biotherm_banner.jpg","descr":"","source":"2023/07/","image_2":"p60125.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-11 09:59:33","sync_id":"","date_update":"2023-07-11 09:59:33"},{"id":60126,"filename":"BoadiceaTheVictorious_banner.jpg","descr":"","source":"2023/07/","image_2":"p60126.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-11 10:54:27","sync_id":"","date_update":"2023-07-11 10:54:27"},{"id":60127,"filename":"BottegaVeneta_banner.jpg","descr":"","source":"2023/07/","image_2":"p60127.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-11 11:26:12","sync_id":"","date_update":"2023-07-11 11:26:12"},{"id":61281,"filename":"Bionoble_banner (full).jpg","descr":"","source":"2023/07/","image_2":"p61281.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-11 18:44:02","sync_id":"","date_update":"2023-07-11 18:44:02"},{"id":61282,"filename":"Boucheron_banner.jpg","descr":"","source":"2023/07/","image_2":"p61282.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-12 10:45:29","sync_id":"","date_update":"2023-07-12 10:45:29"},{"id":61283,"filename":"Burberry_banner.jpg","descr":"","source":"2023/07/","image_2":"p61283.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-12 11:29:40","sync_id":"","date_update":"2023-07-12 11:29:40"},{"id":61284,"filename":"Bvlgari_banner.jpg","descr":"","source":"2023/07/","image_2":"p61284.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-12 13:06:22","sync_id":"","date_update":"2023-07-12 13:06:22"},{"id":61286,"filename":"ByEloise_banner.jpg","descr":"","source":"2023/07/","image_2":"p61286.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-12 13:13:15","sync_id":"","date_update":"2023-07-12 13:13:15"},{"id":61287,"filename":"ByKilian_banner.jpg","descr":"","source":"2023/07/","image_2":"p61287.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-12 14:31:09","sync_id":"","date_update":"2023-07-12 14:31:09"},{"id":61288,"filename":"Byredo_banner.jpg","descr":"","source":"2023/07/","image_2":"p61288.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-12 14:37:40","sync_id":"","date_update":"2023-07-12 14:37:40"},{"id":61291,"filename":"CarloDali_banner.jpg","descr":"","source":"2023/07/","image_2":"p61291.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-13 08:08:28","sync_id":"","date_update":"2023-07-13 08:08:28"},{"id":61292,"filename":"CalvinKlein_banner.jpg","descr":"","source":"2023/07/","image_2":"p61292.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-13 09:20:52","sync_id":"","date_update":"2023-07-13 09:20:52"},{"id":61293,"filename":"CarnerBarcelona_banner.jpg","descr":"","source":"2023/07/","image_2":"p61293.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-13 10:09:25","sync_id":"","date_update":"2023-07-13 10:09:25"},{"id":61294,"filename":"CarolinaHerrera_banner.jpg","descr":"","source":"2023/07/","image_2":"p61294.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-13 11:07:20","sync_id":"","date_update":"2023-07-13 11:07:20"},{"id":61295,"filename":"Cartier_banner.jpg","descr":"","source":"2023/07/","image_2":"p61295.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-13 12:21:03","sync_id":"","date_update":"2023-07-13 12:21:03"},{"id":61297,"filename":"Cerruti_banner.jpg","descr":"","source":"2023/07/","image_2":"p61297.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-13 12:51:27","sync_id":"","date_update":"2023-07-13 12:51:27"},{"id":61299,"filename":"Chloe_banner.jpg","descr":"","source":"2023/07/","image_2":"p61299.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-13 16:02:26","sync_id":"","date_update":"2023-07-13 16:02:26"},{"id":61300,"filename":"Clinique_banner.jpg","descr":"","source":"2023/07/","image_2":"p61300.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-14 08:21:17","sync_id":"","date_update":"2023-07-14 08:21:17"},{"id":61301,"filename":"CliveChristian_banner.jpg","descr":"","source":"2023/07/","image_2":"p61301.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-14 09:30:06","sync_id":"","date_update":"2023-07-14 09:30:06"},{"id":61303,"filename":"ColorWow_banner.jpg","descr":"","source":"2023/07/","image_2":"p61303.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-14 10:36:46","sync_id":"","date_update":"2023-07-14 10:36:46"},{"id":61304,"filename":"Creed_banner.jpg","descr":"","source":"2023/07/","image_2":"p61304.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-14 10:46:06","sync_id":"","date_update":"2023-07-14 10:46:06"},{"id":61308,"filename":"Curaprox_banner.jpg","descr":"","source":"2023/07/","image_2":"p61308.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-14 13:29:59","sync_id":"","date_update":"2023-07-14 13:29:59"},{"id":61309,"filename":"Davidoff_banner.jpg","descr":"","source":"2023/07/","image_2":"p61309.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-14 13:38:38","sync_id":"","date_update":"2023-07-14 13:38:38"},{"id":61311,"filename":"Dermacol_banner.jpg","descr":"","source":"2023/07/","image_2":"p61311.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-14 14:02:13","sync_id":"","date_update":"2023-07-14 14:02:13"},{"id":61312,"filename":"Diptyque_banner.jpg","descr":"","source":"2023/07/","image_2":"p61312.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-14 15:17:23","sync_id":"","date_update":"2023-07-14 15:17:23"},{"id":61313,"filename":"DolceGabbana_banner.jpg","descr":"","source":"2023/07/","image_2":"p61313.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-17 08:22:30","sync_id":"","date_update":"2023-07-17 08:22:30"},{"id":61314,"filename":"DSLaboratories_banner.jpg","descr":"","source":"2023/07/","image_2":"p61314.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-17 09:23:19","sync_id":"","date_update":"2023-07-17 09:23:19"},{"id":61315,"filename":"Dsquared2_banner.jpg","descr":"","source":"2023/07/","image_2":"p61315.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-17 09:50:57","sync_id":"","date_update":"2023-07-17 09:50:57"},{"id":61316,"filename":"ElieSaab_banner.jpg","descr":"","source":"2023/07/","image_2":"p61316.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-17 10:34:09","sync_id":"","date_update":"2023-07-17 10:34:09"},{"id":61317,"filename":"Escada_banner.jpg","descr":"","source":"2023/07/","image_2":"p61317.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-17 12:25:28","sync_id":"","date_update":"2023-07-17 12:25:28"},{"id":61318,"filename":"EsteeLauder_banner.jpg","descr":"","source":"2023/07/","image_2":"p61318.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-17 17:52:24","sync_id":"","date_update":"2023-07-17 17:52:24"},{"id":61319,"filename":"Fatboy_banner.jpg","descr":"","source":"2023/07/","image_2":"p61319.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-18 08:29:20","sync_id":"","date_update":"2023-07-18 08:29:20"},{"id":61320,"filename":"Balmain_banner.jpg","descr":"","source":"2023/07/","image_2":"p61320.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-18 09:05:46","sync_id":"","date_update":"2023-07-18 09:05:46"},{"id":61321,"filename":"BondNo9_banner.jpg","descr":"","source":"2023/07/","image_2":"p61321.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-18 10:17:02","sync_id":"","date_update":"2023-07-18 10:17:02"},{"id":61322,"filename":"Floris_banner.jpg","descr":"","source":"2023/07/","image_2":"p61322.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-18 10:38:55","sync_id":"","date_update":"2023-07-18 10:38:55"},{"id":61323,"filename":"Foamie_banner.jpg","descr":"","source":"2023/07/","image_2":"p61323.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-18 11:21:05","sync_id":"","date_update":"2023-07-18 11:21:05"},{"id":61324,"filename":"FranckBoclet_banner.jpg","descr":"","source":"2023/07/","image_2":"p61324.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-18 12:08:24","sync_id":"","date_update":"2023-07-18 12:08:24"},{"id":61325,"filename":"Givenchy_banner.jpg","descr":"","source":"2023/07/","image_2":"p61325.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-18 14:46:43","sync_id":"","date_update":"2023-07-18 14:46:43"},{"id":61326,"filename":"GRProducts_banner.jpg","descr":"","source":"2023/07/","image_2":"p61326.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-18 15:25:59","sync_id":"","date_update":"2023-07-18 15:25:59"},{"id":61327,"filename":"Gucci_banner.jpg","descr":"","source":"2023/07/","image_2":"p61327.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-18 15:52:23","sync_id":"","date_update":"2023-07-18 15:52:23"},{"id":61447,"filename":"skincare rutine new (full).jpg","descr":"","source":"2023/07/","image_2":"p61447.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-22 07:56:17","sync_id":"","date_update":"2023-07-22 07:56:17"},{"id":61450,"filename":"skin_bar-3 (full).jpg","descr":"","source":"2023/07/","image_2":"p61450.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-22 09:33:30","sync_id":"","date_update":"2023-07-22 09:33:30"},{"id":61452,"filename":"Guerlain_banner.jpg","descr":"","source":"2023/07/","image_2":"p61452.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-24 12:01:06","sync_id":"","date_update":"2023-07-24 12:01:06"},{"id":61453,"filename":"Hermes_banner.jpg","descr":"","source":"2023/07/","image_2":"p61453.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-24 12:07:48","sync_id":"","date_update":"2023-07-24 12:07:48"},{"id":61463,"filename":"Hollister_banner.jpg","descr":"","source":"2023/07/","image_2":"p61463.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-25 09:57:01","sync_id":"","date_update":"2023-07-25 09:57:01"},{"id":61468,"filename":"artdeco banner.jpg","descr":"","source":"2023/07/","image_2":"p61468.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-25 12:50:49","sync_id":"","date_update":"2023-07-25 12:50:49"},{"id":61471,"filename":"omorovicza banner2.jpg","descr":"","source":"2023/07/","image_2":"p61471.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-25 13:33:03","sync_id":"","date_update":"2023-07-25 13:33:03"},{"id":61475,"filename":"tan organic 2.jpg","descr":"","source":"2023/07/","image_2":"p61475.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-25 13:54:18","sync_id":"","date_update":"2023-07-25 13:54:18"},{"id":61483,"filename":"Nuud_banner (full).png","descr":"","source":"2023/07/","image_2":"p61483.png","image_tablet":null,"image_mobile":null,"date":"2023-07-26 08:38:21","sync_id":"","date_update":"2023-07-26 08:38:21"},{"id":61488,"filename":"HotTools_banner (full).png","descr":"","source":"2023/07/","image_2":"p61488.png","image_tablet":null,"image_mobile":null,"date":"2023-07-26 09:00:31","sync_id":"","date_update":"2023-07-26 09:00:31"},{"id":61502,"filename":"PanierDesSens_banner (full).png","descr":"","source":"2023/07/","image_2":"p61502.png","image_tablet":null,"image_mobile":null,"date":"2023-07-26 10:44:43","sync_id":"","date_update":"2023-07-26 10:44:43"},{"id":61504,"filename":"THoO_banner.jpg","descr":"","source":"2023/07/","image_2":"p61504.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-26 11:19:12","sync_id":"","date_update":"2023-07-26 11:19:12"},{"id":61514,"filename":"retinol1 (full).jpg","descr":"","source":"2023/07/","image_2":"p61514.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-28 07:15:58","sync_id":"","date_update":"2023-07-28 07:15:58"},{"id":61515,"filename":"Invisibobble_banner.jpg","descr":"","source":"2023/07/","image_2":"p61515.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-28 08:25:29","sync_id":"","date_update":"2023-07-28 08:25:29"},{"id":61516,"filename":"IvyBear_banner.jpg","descr":"","source":"2023/07/","image_2":"p61516.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-28 08:39:04","sync_id":"","date_update":"2023-07-28 08:39:04"},{"id":61517,"filename":"JeanPaulGaultier_banner.jpg","descr":"","source":"2023/07/","image_2":"p61517.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-28 13:26:49","sync_id":"","date_update":"2023-07-28 13:26:49"},{"id":61519,"filename":"JilSander_banner.jpg","descr":"","source":"2023/07/","image_2":"p61519.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-28 14:26:09","sync_id":"","date_update":"2023-07-28 14:26:09"},{"id":61520,"filename":"JuicyCouture_banner.jpg","descr":"","source":"2023/07/","image_2":"p61520.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-28 14:41:49","sync_id":"","date_update":"2023-07-28 14:41:49"},{"id":61521,"filename":"JulietteHasAGun_banner.jpg","descr":"","source":"2023/07/","image_2":"p61521.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-28 14:56:17","sync_id":"","date_update":"2023-07-28 14:56:17"},{"id":61522,"filename":"K18_banner.jpg","descr":"","source":"2023/07/","image_2":"p61522.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-31 09:17:23","sync_id":"","date_update":"2023-07-31 09:17:23"},{"id":61523,"filename":"KarlLagerfeld_banner.jpg","descr":"","source":"2023/07/","image_2":"p61523.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-31 10:16:31","sync_id":"","date_update":"2023-07-31 10:16:31"},{"id":61524,"filename":"MalibuC_banner.jpg","descr":"","source":"2023/07/","image_2":"p61524.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-31 11:22:59","sync_id":"","date_update":"2023-07-31 11:22:59"},{"id":61525,"filename":"BioIonic_banner.jpg","descr":"","source":"2023/07/","image_2":"p61525.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-31 11:28:38","sync_id":"","date_update":"2023-07-31 11:28:38"},{"id":61526,"filename":"Omorovicza (full).jpg","descr":"","source":"2023/07/","image_2":"p61526.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-31 11:44:48","sync_id":"","date_update":"2023-07-31 11:44:48"},{"id":61527,"filename":"Olaplex (full).jpg","descr":"","source":"2023/07/","image_2":"p61527.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-31 11:46:57","sync_id":"","date_update":"2023-07-31 11:46:57"},{"id":61528,"filename":"Nishane (full).jpg","descr":"","source":"2023/07/","image_2":"p61528.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-31 11:49:09","sync_id":"","date_update":"2023-07-31 11:49:09"},{"id":61529,"filename":"Natulique (full).jpg","descr":"","source":"2023/07/","image_2":"p61529.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-31 11:51:06","sync_id":"","date_update":"2023-07-31 11:51:06"},{"id":61530,"filename":"Natucain (full).png","descr":"","source":"2023/07/","image_2":"p61530.png","image_tablet":null,"image_mobile":null,"date":"2023-07-31 11:52:30","sync_id":"","date_update":"2023-07-31 11:52:30"},{"id":61821,"filename":"Perricone MD (full).jpg","descr":"","source":"2023/07/","image_2":"p61821.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-31 14:28:43","sync_id":"","date_update":"2023-07-31 14:28:43"},{"id":61823,"filename":"Pure97 (full).png","descr":"","source":"2023/07/","image_2":"p61823.png","image_tablet":null,"image_mobile":null,"date":"2023-07-31 15:23:46","sync_id":"","date_update":"2023-07-31 15:23:46"},{"id":61826,"filename":"Rasasi (full).jpg","descr":"","source":"2023/07/","image_2":"p61826.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-31 15:42:02","sync_id":"","date_update":"2023-07-31 15:42:02"},{"id":61827,"filename":"Xerjoff_banner.jpg","descr":"","source":"2023/07/","image_2":"p61827.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-07-31 16:08:19","sync_id":"","date_update":"2023-07-31 16:08:19"},{"id":61849,"filename":"ScotchSoda_banner_1 (full).png","descr":"","source":"2023/08/","image_2":"p61849.png","image_tablet":null,"image_mobile":null,"date":"2023-08-01 10:01:43","sync_id":"","date_update":"2023-08-01 10:01:43"},{"id":63654,"filename":"Stayve_banner (full).png","descr":"","source":"2023/08/","image_2":"p63654.png","image_tablet":null,"image_mobile":null,"date":"2023-08-01 11:00:06","sync_id":"","date_update":"2023-08-01 11:00:06"},{"id":111553,"filename":"hairborn-2 (full).jpg","descr":"","source":"2023/08/","image_2":"p111553.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-02 08:52:57","sync_id":"","date_update":"2023-08-02 08:52:57"},{"id":111555,"filename":"Tocca_banner_1 (full).png","descr":"","source":"2023/08/","image_2":"p111555.png","image_tablet":null,"image_mobile":null,"date":"2023-08-02 09:35:54","sync_id":"","date_update":"2023-08-02 09:35:54"},{"id":111559,"filename":"TomFord_banner (full).png","descr":"","source":"2023/08/","image_2":"p111559.png","image_tablet":null,"image_mobile":null,"date":"2023-08-02 09:53:22","sync_id":"","date_update":"2023-08-02 09:53:22"},{"id":111560,"filename":"VCanto_banner (full).jpg","descr":"","source":"2023/08/","image_2":"p111560.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-02 10:52:23","sync_id":"","date_update":"2023-08-02 10:52:23"},{"id":114853,"filename":"Kerastase-banner.jpg","descr":"","source":"2023/08/","image_2":"p114853.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-03 09:31:32","sync_id":"","date_update":"2023-08-03 09:31:32"},{"id":117423,"filename":"KillerOud-banner.jpg","descr":"","source":"2023/08/","image_2":"p117423.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-03 09:56:55","sync_id":"","date_update":"2023-08-03 09:56:55"},{"id":118699,"filename":"Korloff_banner.png","descr":"","source":"2023/08/","image_2":"p118699.png","image_tablet":null,"image_mobile":null,"date":"2023-08-03 11:00:31","sync_id":"","date_update":"2023-08-03 11:00:31"},{"id":118700,"filename":"VictoriasSecret_banner (full).png","descr":"","source":"2023/08/","image_2":"p118700.png","image_tablet":null,"image_mobile":null,"date":"2023-08-03 12:56:25","sync_id":"","date_update":"2023-08-03 12:56:25"},{"id":118701,"filename":"VitaCoco_banner (full).png","descr":"","source":"2023/08/","image_2":"p118701.png","image_tablet":null,"image_mobile":null,"date":"2023-08-03 13:22:05","sync_id":"","date_update":"2023-08-03 13:22:05"},{"id":118702,"filename":"Lancome_banner.png","descr":"","source":"2023/08/","image_2":"p118702.png","image_tablet":null,"image_mobile":null,"date":"2023-08-03 14:32:32","sync_id":"","date_update":"2023-08-03 14:32:32"},{"id":118704,"filename":"Lattafa_banner.jpg","descr":"","source":"2023/08/","image_2":"p118704.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-07 08:19:21","sync_id":"","date_update":"2023-08-07 08:19:21"},{"id":118705,"filename":"LanvinParis_banner (full).png","descr":"","source":"2023/08/","image_2":"p118705.png","image_tablet":null,"image_mobile":null,"date":"2023-08-07 09:04:55","sync_id":"","date_update":"2023-08-07 09:04:55"},{"id":118706,"filename":"Laura-Biagiotti_banner.png","descr":"","source":"2023/08/","image_2":"p118706.png","image_tablet":null,"image_mobile":null,"date":"2023-08-07 09:32:12","sync_id":"","date_update":"2023-08-07 09:32:12"},{"id":118707,"filename":"Maison-Francis-Kurkdjian_banner.jpg","descr":"","source":"2023/08/","image_2":"p118707.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-07 11:22:28","sync_id":"","date_update":"2023-08-07 11:22:28"},{"id":118709,"filename":"MarcInbane_banner.jpg","descr":"","source":"2023/08/","image_2":"p118709.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-07 11:30:11","sync_id":"","date_update":"2023-08-07 11:30:11"},{"id":118710,"filename":"MariaNila_banner.jpg","descr":"","source":"2023/08/","image_2":"p118710.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-07 11:55:54","sync_id":"","date_update":"2023-08-07 11:55:54"},{"id":118711,"filename":"MemoParis_banner.jpg","descr":"","source":"2023/08/","image_2":"p118711.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-07 15:08:34","sync_id":"","date_update":"2023-08-07 15:08:34"},{"id":118712,"filename":"MichaelKors_banner.jpg","descr":"","source":"2023/08/","image_2":"p118712.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-07 16:05:25","sync_id":"","date_update":"2023-08-07 16:05:25"},{"id":118713,"filename":"MiuMiu_banner.png","descr":"","source":"2023/08/","image_2":"p118713.png","image_tablet":null,"image_mobile":null,"date":"2023-08-08 08:53:12","sync_id":"","date_update":"2023-08-08 08:53:12"},{"id":118714,"filename":"Moresque_banner.jpg","descr":"","source":"2023/08/","image_2":"p118714.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-08 09:59:15","sync_id":"","date_update":"2023-08-08 09:59:15"},{"id":118715,"filename":"Mugler_banner.jpg","descr":"","source":"2023/08/","image_2":"p118715.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-08 10:33:38","sync_id":"","date_update":"2023-08-08 10:33:38"},{"id":118716,"filename":"Mustang_banner.jpg","descr":"","source":"2023/08/","image_2":"p118716.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-08 12:42:34","sync_id":"","date_update":"2023-08-08 12:42:34"},{"id":118717,"filename":"NarcisoRodriguez_banner.png","descr":"","source":"2023/08/","image_2":"p118717.png","image_tablet":null,"image_mobile":null,"date":"2023-08-08 13:36:12","sync_id":"","date_update":"2023-08-08 13:36:12"},{"id":118718,"filename":"Nacomatto_banner.png","descr":"","source":"2023/08/","image_2":"p118718.png","image_tablet":null,"image_mobile":null,"date":"2023-08-08 14:07:20","sync_id":"","date_update":"2023-08-08 14:07:20"},{"id":118719,"filename":"Navlasil_banner.jpg","descr":"","source":"2023/08/","image_2":"p118719.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-08 14:13:37","sync_id":"","date_update":"2023-08-08 14:13:37"},{"id":118720,"filename":"NinaRicci_banner.jpg","descr":"","source":"2023/08/","image_2":"p118720.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-08 15:47:39","sync_id":"","date_update":"2023-08-08 15:47:39"},{"id":118721,"filename":"NobleIsle_banner.jpg","descr":"","source":"2023/08/","image_2":"p118721.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-09 07:50:58","sync_id":"","date_update":"2023-08-09 07:50:58"},{"id":118722,"filename":"NuxeParis_banner.jpg","descr":"","source":"2023/08/","image_2":"p118722.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-09 09:56:25","sync_id":"","date_update":"2023-08-09 09:56:25"},{"id":118723,"filename":"OscarDeLaRenta_banner.jpg","descr":"","source":"2023/08/","image_2":"p118723.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-09 10:38:47","sync_id":"","date_update":"2023-08-09 10:38:47"},{"id":118724,"filename":"PacoRabanne_banner.jpg","descr":"","source":"2023/08/","image_2":"p118724.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-09 11:11:45","sync_id":"","date_update":"2023-08-09 11:11:45"},{"id":118725,"filename":"ParfumsDeMarly_banner.png","descr":"","source":"2023/08/","image_2":"p118725.png","image_tablet":null,"image_mobile":null,"date":"2023-08-09 13:32:33","sync_id":"","date_update":"2023-08-09 13:32:33"},{"id":118726,"filename":"PaulMitchell_banner.jpg","descr":"","source":"2023/08/","image_2":"p118726.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-10 09:47:29","sync_id":"","date_update":"2023-08-10 09:47:29"},{"id":118727,"filename":"Penhaligons_banner.png","descr":"","source":"2023/08/","image_2":"p118727.png","image_tablet":null,"image_mobile":null,"date":"2023-08-10 10:52:26","sync_id":"","date_update":"2023-08-10 10:52:26"},{"id":118728,"filename":"PhilippPleinParfums_banner.jpg","descr":"","source":"2023/08/","image_2":"p118728.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-10 11:11:26","sync_id":"","date_update":"2023-08-10 11:11:26"},{"id":118729,"filename":"PizBuin_banner.jpg","descr":"","source":"2023/08/","image_2":"p118729.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-11 14:07:07","sync_id":"","date_update":"2023-08-11 14:07:07"},{"id":118730,"filename":"Playboy_banner.jpg","descr":"","source":"2023/08/","image_2":"p118730.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-11 14:50:55","sync_id":"","date_update":"2023-08-11 14:50:55"},{"id":118731,"filename":"Police_banner.png","descr":"","source":"2023/08/","image_2":"p118731.png","image_tablet":null,"image_mobile":null,"date":"2023-08-11 15:37:47","sync_id":"","date_update":"2023-08-11 15:37:47"},{"id":118736,"filename":"Prada_banner.png","descr":"","source":"2023/08/","image_2":"p118736.png","image_tablet":null,"image_mobile":null,"date":"2023-08-15 15:10:11","sync_id":"","date_update":"2023-08-15 15:10:11"},{"id":118738,"filename":"Redken_banner.jpg","descr":"","source":"2023/08/","image_2":"p118738.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-15 15:57:07","sync_id":"","date_update":"2023-08-15 15:57:07"},{"id":118739,"filename":"RalphLauren_banner.jpg","descr":"","source":"2023/08/","image_2":"p118739.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-15 16:18:11","sync_id":"","date_update":"2023-08-15 16:18:11"},{"id":118740,"filename":"RenierPerfumes_banner.jpg","descr":"","source":"2023/08/","image_2":"p118740.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-15 17:02:23","sync_id":"","date_update":"2023-08-15 17:02:23"},{"id":118950,"filename":"RicardoRamos_banner.jpg","descr":"","source":"2023/08/","image_2":"p118950.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-16 08:40:59","sync_id":"","date_update":"2023-08-16 08:40:59"},{"id":118951,"filename":"RobertoCavalli_banner.jpg","descr":"","source":"2023/08/","image_2":"p118951.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-16 09:12:34","sync_id":"","date_update":"2023-08-16 09:12:34"},{"id":118952,"filename":"S.T.-Dupont_banner.jpg","descr":"","source":"2023/08/","image_2":"p118952.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-16 10:23:55","sync_id":"","date_update":"2023-08-16 10:23:55"},{"id":118953,"filename":"SalvatoreFerragamo_banner.jpg","descr":"","source":"2023/08/","image_2":"p118953.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-16 11:12:08","sync_id":"","date_update":"2023-08-16 11:12:08"},{"id":118964,"filename":"Sawalef_banner.jpg","descr":"","source":"2023/08/","image_2":"p118964.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-16 11:45:10","sync_id":"","date_update":"2023-08-16 11:45:10"},{"id":118965,"filename":"SergeLutens_banner.jpg","descr":"","source":"2023/08/","image_2":"p118965.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-16 14:17:35","sync_id":"","date_update":"2023-08-16 14:17:35"},{"id":118967,"filename":"Sisley_banner.jpg","descr":"","source":"2023/08/","image_2":"p118967.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-16 14:43:50","sync_id":"","date_update":"2023-08-16 14:43:50"},{"id":118968,"filename":"StellaMcCartney_banner.jpg","descr":"","source":"2023/08/","image_2":"p118968.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-16 15:34:43","sync_id":"","date_update":"2023-08-16 15:34:43"},{"id":118969,"filename":"SwissArabian_banner.jpg","descr":"","source":"2023/08/","image_2":"p118969.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-16 15:53:59","sync_id":"","date_update":"2023-08-16 15:53:59"},{"id":118970,"filename":"TangleTeezer_banner.jpg","descr":"","source":"2023/08/","image_2":"p118970.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-16 16:09:46","sync_id":"","date_update":"2023-08-16 16:09:46"},{"id":118971,"filename":"Thalgo_banner.png","descr":"","source":"2023/08/","image_2":"p118971.png","image_tablet":null,"image_mobile":null,"date":"2023-08-16 16:14:20","sync_id":"","date_update":"2023-08-16 16:14:20"},{"id":118972,"filename":"Tiffany_banner.jpg","descr":"","source":"2023/08/","image_2":"p118972.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-17 08:20:39","sync_id":"","date_update":"2023-08-17 08:20:39"},{"id":118973,"filename":"TizianaTerenzi_banner.jpg","descr":"","source":"2023/08/","image_2":"p118973.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-17 09:10:25","sync_id":"","date_update":"2023-08-17 09:10:25"},{"id":118974,"filename":"Trussardi_banner.jpg","descr":"","source":"2023/08/","image_2":"p118974.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-17 10:34:02","sync_id":"","date_update":"2023-08-17 10:34:02"},{"id":118975,"filename":"EmanuelUngaro_banner.jpg","descr":"","source":"2023/08/","image_2":"p118975.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-17 11:37:42","sync_id":"","date_update":"2023-08-17 11:37:42"},{"id":118976,"filename":"Uriage_banner.jpg","descr":"","source":"2023/08/","image_2":"p118976.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-17 13:42:06","sync_id":"","date_update":"2023-08-17 13:42:06"},{"id":118977,"filename":"VanCleefArpels_banner.jpg","descr":"","source":"2023/08/","image_2":"p118977.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-17 14:23:55","sync_id":"","date_update":"2023-08-17 14:23:55"},{"id":118979,"filename":"Versace_banner.png","descr":"","source":"2023/08/","image_2":"p118979.png","image_tablet":null,"image_mobile":null,"date":"2023-08-17 14:42:06","sync_id":"","date_update":"2023-08-17 14:42:06"},{"id":118980,"filename":"Wella_banner.jpg","descr":"","source":"2023/08/","image_2":"p118980.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-17 15:39:47","sync_id":"","date_update":"2023-08-17 15:39:47"},{"id":118981,"filename":"YankeeCandle_banner.jpg","descr":"","source":"2023/08/","image_2":"p118981.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-18 09:25:09","sync_id":"","date_update":"2023-08-18 09:25:09"},{"id":118983,"filename":"YvesSaintLaurent2_banner (full).jpg","descr":"","source":"2023/08/","image_2":"p118983.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-18 09:50:33","sync_id":"","date_update":"2023-08-18 09:50:33"},{"id":118984,"filename":"ZadigVoltaire_banner.jpg","descr":"","source":"2023/08/","image_2":"p118984.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-18 10:23:39","sync_id":"","date_update":"2023-08-18 10:23:39"},{"id":118985,"filename":"Zirh_banner.jpg","descr":"","source":"2023/08/","image_2":"p118985.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-18 10:38:22","sync_id":"","date_update":"2023-08-18 10:38:22"},{"id":118986,"filename":"Ziaja_banner.jpg","descr":"","source":"2023/08/","image_2":"p118986.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-18 10:59:30","sync_id":"","date_update":"2023-08-18 10:59:30"},{"id":118987,"filename":"Xpel_banner.jpg","descr":"","source":"2023/08/","image_2":"p118987.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-18 12:53:25","sync_id":"","date_update":"2023-08-18 12:53:25"},{"id":118988,"filename":"VinceCamuto_banner.jpg","descr":"","source":"2023/08/","image_2":"p118988.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-18 13:11:43","sync_id":"","date_update":"2023-08-18 13:11:43"},{"id":118989,"filename":"spf faktor (full).jpg","descr":"","source":"2023/08/","image_2":"p118989.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-18 14:00:32","sync_id":"","date_update":"2023-08-18 14:00:32"},{"id":118991,"filename":"Main-Jermyn-Street-Shop-Front_Landscape-1 (full).jpg","descr":"","source":"2023/08/","image_2":"p118991.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-18 14:21:53","sync_id":"","date_update":"2023-08-18 14:21:53"},{"id":119014,"filename":"Lalique_banner.jpg","descr":"","source":"2023/08/","image_2":"p119014.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-21 08:41:53","sync_id":"","date_update":"2023-08-21 08:41:53"},{"id":119015,"filename":"LabelM_banner.jpg","descr":"","source":"2023/08/","image_2":"p119015.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-21 08:46:07","sync_id":"","date_update":"2023-08-21 08:46:07"},{"id":119017,"filename":"Kenzo_banner.jpg","descr":"","source":"2023/08/","image_2":"p119017.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-21 08:49:54","sync_id":"","date_update":"2023-08-21 08:49:54"},{"id":119018,"filename":"ViktorRolf_banner.jpg","descr":"","source":"2023/08/","image_2":"p119018.jpeg","image_tablet":null,"image_mobile":null,"date":"2023-08-21 10:21:06","sync_id":"","date_update":"2023-08-21 10:21:06"}]',
];
}
private function getBlockUtil(): Block
{
static $block;
if (!$block) {
$block = ServiceContainer::getService(Block::class);
}
return $block;
}
private function getDownloader(): \Downloader
{
static $downloader;
if (!$downloader) {
$downloader = new \Downloader();
$downloader->setMethod('curl');
}
return $downloader;
}
}
return FixBlockPhotosScript::class;