first commit

This commit is contained in:
2024-11-05 12:22:50 +01:00
commit e5682a3912
19641 changed files with 2948548 additions and 0 deletions

View File

@@ -0,0 +1,86 @@
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License version 3.0
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*/
namespace PrestaShop\Module\PrestashopFacebook\DTO\Object;
use JsonSerializable;
class Ad implements JsonSerializable
{
/**
* @var string
*/
private $id;
/**
* @var string
*/
private $name;
/**
* @var string
*/
private $createdAt;
/**
* @param string $id
* @param string $name
* @param string $createdAt
*/
public function __construct($id, $name, $createdAt)
{
$this->id = $id;
$this->name = $name;
$this->createdAt = $createdAt;
}
/**
* @return string
*/
public function getId()
{
return $this->id;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @return string
*/
public function getCreatedAt()
{
return $this->createdAt;
}
public function jsonSerialize()
{
return [
'id' => $this->getId(),
'name' => $this->getName(),
'createdAt' => $this->getCreatedAt(),
];
}
}

View File

@@ -0,0 +1,86 @@
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License version 3.0
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*/
namespace PrestaShop\Module\PrestashopFacebook\DTO\Object;
use JsonSerializable;
class Catalog implements JsonSerializable
{
/**
* @var string
*/
private $id;
/**
* @var bool
*/
private $productSyncStarted;
/**
* @var bool
*/
private $categoryMatchingStarted;
/**
* Page constructor.
*
* @param string $id
*/
public function __construct($id, $productSyncStarted, $categoryMatchingStarted)
{
$this->id = $id;
$this->productSyncStarted = $productSyncStarted;
$this->categoryMatchingStarted = $categoryMatchingStarted;
}
/**
* @return string
*/
public function getId()
{
return $this->id;
}
/**
* @return bool
*/
public function getProductSyncStarted()
{
return $this->productSyncStarted;
}
/**
* @return bool
*/
public function getCategoryMatchingStarted()
{
return $this->categoryMatchingStarted;
}
public function jsonSerialize()
{
return [
'id' => $this->getId(),
'productSyncStarted' => $this->getProductSyncStarted(),
'categoryMatchingStarted' => $this->getCategoryMatchingStarted(),
];
}
}

View File

@@ -0,0 +1,88 @@
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License version 3.0
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*/
namespace PrestaShop\Module\PrestashopFacebook\DTO\Object;
use JsonSerializable;
class FacebookBusinessManager implements JsonSerializable
{
/**
* @var string
*/
private $id;
/**
* @var string
*/
private $name;
/**
* @var int
*/
private $createdAt;
/**
* FacebookBusinessManager constructor.
*
* @param string $id
* @param string $name
* @param int $createdAt
*/
public function __construct($id, $name, $createdAt)
{
$this->id = $id;
$this->name = $name;
$this->createdAt = $createdAt;
}
/**
* @return string
*/
public function getId()
{
return $this->id;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @return int
*/
public function getCreatedAt()
{
return $this->createdAt;
}
public function jsonSerialize()
{
return [
'id' => $this->getId(),
'name' => $this->getName(),
'createDate' => $this->getCreatedAt(),
];
}
}

View File

@@ -0,0 +1,103 @@
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License version 3.0
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*/
namespace PrestaShop\Module\PrestashopFacebook\DTO\Object;
use JsonSerializable;
class Page implements JsonSerializable
{
/**
* @var string
*/
private $id;
/**
* @var string
*/
private $page;
/**
* @var int|null
*/
private $likes;
/**
* @var string|null
*/
private $logo;
/**
* Page constructor.
*
* @param string $page
* @param int|null $likes
* @param string|null $logo
*/
public function __construct($id, $page, $likes, $logo)
{
$this->id = $id;
$this->page = $page;
$this->likes = $likes;
$this->logo = $logo;
}
/**
* @return string
*/
public function getId()
{
return $this->id;
}
/**
* @return string
*/
public function getPage()
{
return $this->page;
}
/**
* @return int|null
*/
public function getLikes()
{
return $this->likes;
}
/**
* @return string|null
*/
public function getLogo()
{
return $this->logo;
}
public function jsonSerialize()
{
return [
'id' => $this->getId(),
'page' => $this->getPage(),
'likes' => $this->getLikes(),
'logo' => $this->getLogo(),
];
}
}

View File

@@ -0,0 +1,120 @@
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License version 3.0
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*/
namespace PrestaShop\Module\PrestashopFacebook\DTO\Object;
use JsonSerializable;
class Pixel implements JsonSerializable
{
/**
* @var string
*/
private $name;
/**
* @var string
*/
private $id;
/**
* @var string
*/
private $lastActive;
/**
* @var bool
*/
private $isUnavailable;
/**
* @var bool
*/
private $isActive;
/**
* Pixel constructor.
*
* @param string $id
* @param string $name
* @param string $lastActive
* @param bool $isUnavailable
* @param bool $isActive
*/
public function __construct($id, $name, $lastActive, $isUnavailable, $isActive)
{
$this->id = $id;
$this->name = $name;
$this->lastActive = $lastActive;
$this->isUnavailable = $isUnavailable;
$this->isActive = $isActive;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @return string
*/
public function getId()
{
return $this->id;
}
/**
* @return string
*/
public function getLastActive()
{
return $this->lastActive;
}
/**
* @return bool
*/
public function isUnavailable()
{
return $this->isUnavailable;
}
/**
* @return bool
*/
public function isActive()
{
return $this->isActive;
}
public function jsonSerialize()
{
return [
'id' => $this->getId(),
'name' => $this->getName(),
'lastActive' => $this->getLastActive(),
'isUnavailable' => $this->isUnavailable(),
'isActive' => $this->isActive(),
];
}
}

View File

@@ -0,0 +1,51 @@
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License version 3.0
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*/
namespace PrestaShop\Module\PrestashopFacebook\DTO\Object;
use JsonSerializable;
class User implements JsonSerializable
{
/**
* @var string|null
*/
private $email;
public function __construct($email)
{
$this->email = $email;
}
/**
* @return string|null
*/
public function getEmail()
{
return $this->email;
}
public function jsonSerialize()
{
return [
'email' => $this->getEmail(),
];
}
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License version 3.0
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*/
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
header('Location: ../');
exit;