first commit
This commit is contained in:
346
modules/ps_facebook/classes/DTO/ConfigurationData.php
Normal file
346
modules/ps_facebook/classes/DTO/ConfigurationData.php
Normal file
@@ -0,0 +1,346 @@
|
||||
<?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;
|
||||
|
||||
use JsonSerializable;
|
||||
|
||||
class ConfigurationData implements JsonSerializable
|
||||
{
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private $contextPsAccounts;
|
||||
|
||||
/**
|
||||
* @var ContextPsFacebook
|
||||
*/
|
||||
private $contextPsFacebook;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $psFacebookExternalBusinessId;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $psAccountsToken;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $psFacebookCurrency;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $psFacebookTimezone;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $psFacebookLocale;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $psFacebookPixelActivationRoute;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $psFacebookFbeOnboardingSaveRoute;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $psFacebookFbeUiUrl;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $isoCode;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $languageCode;
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function getContextPsAccounts()
|
||||
{
|
||||
return $this->contextPsAccounts;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $contextPsAccounts
|
||||
*
|
||||
* @return ConfigurationData
|
||||
*/
|
||||
public function setContextPsAccounts($contextPsAccounts)
|
||||
{
|
||||
$this->contextPsAccounts = $contextPsAccounts;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return ContextPsFacebook
|
||||
*/
|
||||
public function getContextPsFacebook()
|
||||
{
|
||||
return $this->contextPsFacebook;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param ContextPsFacebook $contextPsFacebook
|
||||
*
|
||||
* @return ConfigurationData
|
||||
*/
|
||||
public function setContextPsFacebook($contextPsFacebook)
|
||||
{
|
||||
$this->contextPsFacebook = $contextPsFacebook;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getPsFacebookExternalBusinessId()
|
||||
{
|
||||
return $this->psFacebookExternalBusinessId;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $psFacebookExternalBusinessId
|
||||
*
|
||||
* @return ConfigurationData
|
||||
*/
|
||||
public function setPsFacebookExternalBusinessId($psFacebookExternalBusinessId)
|
||||
{
|
||||
$this->psFacebookExternalBusinessId = $psFacebookExternalBusinessId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getPsAccountsToken()
|
||||
{
|
||||
return $this->psAccountsToken;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $psAccountsToken
|
||||
*
|
||||
* @return ConfigurationData
|
||||
*/
|
||||
public function setPsAccountsToken($psAccountsToken)
|
||||
{
|
||||
$this->psAccountsToken = $psAccountsToken;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getPsFacebookCurrency()
|
||||
{
|
||||
return $this->psFacebookCurrency;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $psFacebookCurrency
|
||||
*
|
||||
* @return ConfigurationData
|
||||
*/
|
||||
public function setPsFacebookCurrency($psFacebookCurrency)
|
||||
{
|
||||
$this->psFacebookCurrency = $psFacebookCurrency;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getPsFacebookTimezone()
|
||||
{
|
||||
return $this->psFacebookTimezone;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $psFacebookTimezone
|
||||
*
|
||||
* @return ConfigurationData
|
||||
*/
|
||||
public function setPsFacebookTimezone($psFacebookTimezone)
|
||||
{
|
||||
$this->psFacebookTimezone = $psFacebookTimezone;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getPsFacebookLocale()
|
||||
{
|
||||
return $this->psFacebookLocale;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $psFacebookLocale
|
||||
*
|
||||
* @return ConfigurationData
|
||||
*/
|
||||
public function setPsFacebookLocale($psFacebookLocale)
|
||||
{
|
||||
$this->psFacebookLocale = $psFacebookLocale;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getPsFacebookPixelActivationRoute()
|
||||
{
|
||||
return $this->psFacebookPixelActivationRoute;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $psFacebookPixelActivationRoute
|
||||
*
|
||||
* @return ConfigurationData
|
||||
*/
|
||||
public function setPsFacebookPixelActivationRoute($psFacebookPixelActivationRoute)
|
||||
{
|
||||
$this->psFacebookPixelActivationRoute = $psFacebookPixelActivationRoute;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getPsFacebookFbeOnboardingSaveRoute()
|
||||
{
|
||||
return $this->psFacebookFbeOnboardingSaveRoute;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $psFacebookFbeOnboardingSaveRoute
|
||||
*
|
||||
* @return ConfigurationData
|
||||
*/
|
||||
public function setPsFacebookFbeOnboardingSaveRoute($psFacebookFbeOnboardingSaveRoute)
|
||||
{
|
||||
$this->psFacebookFbeOnboardingSaveRoute = $psFacebookFbeOnboardingSaveRoute;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getPsFacebookFbeUiUrl()
|
||||
{
|
||||
return $this->psFacebookFbeUiUrl;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $psFacebookFbeUiUrl
|
||||
*
|
||||
* @return ConfigurationData
|
||||
*/
|
||||
public function setPsFacebookFbeUiUrl($psFacebookFbeUiUrl)
|
||||
{
|
||||
$this->psFacebookFbeUiUrl = $psFacebookFbeUiUrl;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getIsoCode()
|
||||
{
|
||||
return $this->isoCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $isoCode
|
||||
*
|
||||
* @return ConfigurationData
|
||||
*/
|
||||
public function setIsoCode($isoCode)
|
||||
{
|
||||
$this->isoCode = $isoCode;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getLanguageCode()
|
||||
{
|
||||
return $this->languageCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $languageCode
|
||||
*
|
||||
* @return ConfigurationData
|
||||
*/
|
||||
public function setLanguageCode($languageCode)
|
||||
{
|
||||
$this->languageCode = $languageCode;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function jsonSerialize()
|
||||
{
|
||||
return [
|
||||
'contextPsAccounts' => $this->getContextPsAccounts(),
|
||||
'contextPsFacebook' => $this->getContextPsFacebook(),
|
||||
'psFacebookExternalBusinessId' => $this->getPsFacebookExternalBusinessId(),
|
||||
'psAccountsToken' => $this->getPsAccountsToken(),
|
||||
'psFacebookCurrency' => $this->getPsFacebookCurrency(),
|
||||
'psFacebookTimezone' => $this->getPsFacebookTimezone(),
|
||||
'psFacebookLocale' => $this->getPsFacebookLocale(),
|
||||
'psFacebookPixelActivationRoute' => $this->getPsFacebookPixelActivationRoute(),
|
||||
'psFacebookFbeOnboardingSaveRoute' => $this->getPsFacebookFbeOnboardingSaveRoute(),
|
||||
'psFacebookFbeUiUrl' => $this->getPsFacebookFbeUiUrl(),
|
||||
'i18nSettings' => [
|
||||
'isoCode' => $this->getIsoCode(),
|
||||
'languageLocale' => $this->getLanguageCode(),
|
||||
],
|
||||
];
|
||||
}
|
||||
}
|
||||
214
modules/ps_facebook/classes/DTO/ContextPsFacebook.php
Normal file
214
modules/ps_facebook/classes/DTO/ContextPsFacebook.php
Normal file
@@ -0,0 +1,214 @@
|
||||
<?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;
|
||||
|
||||
use JsonSerializable;
|
||||
use PrestaShop\Module\PrestashopFacebook\DTO\Object\Ad;
|
||||
use PrestaShop\Module\PrestashopFacebook\DTO\Object\Catalog;
|
||||
use PrestaShop\Module\PrestashopFacebook\DTO\Object\FacebookBusinessManager;
|
||||
use PrestaShop\Module\PrestashopFacebook\DTO\Object\Page;
|
||||
use PrestaShop\Module\PrestashopFacebook\DTO\Object\Pixel;
|
||||
use PrestaShop\Module\PrestashopFacebook\DTO\Object\User;
|
||||
|
||||
class ContextPsFacebook implements JsonSerializable
|
||||
{
|
||||
/**
|
||||
* @var User
|
||||
*/
|
||||
private $user;
|
||||
|
||||
/**
|
||||
* @var FacebookBusinessManager|null
|
||||
*/
|
||||
private $facebookBusinessManager;
|
||||
|
||||
/**
|
||||
* @var Pixel|null
|
||||
*/
|
||||
private $pixel;
|
||||
|
||||
/**
|
||||
* @var Page|null
|
||||
*/
|
||||
private $page;
|
||||
|
||||
/**
|
||||
* @var Ad|null
|
||||
*/
|
||||
private $ad;
|
||||
|
||||
/**
|
||||
* @var Catalog|null
|
||||
*/
|
||||
private $catalog;
|
||||
|
||||
/**
|
||||
* ContextPsFacebook constructor.
|
||||
*
|
||||
* @param User $user
|
||||
* @param FacebookBusinessManager|null $facebookBusinessManager
|
||||
* @param Pixel|null $pixel
|
||||
* @param Page|null $page
|
||||
* @param Ad|null $ad
|
||||
* @param Catalog|null $catalog
|
||||
*/
|
||||
public function __construct($user, $facebookBusinessManager, $pixel, $page, $ad, $catalog)
|
||||
{
|
||||
$this->user = $user;
|
||||
$this->facebookBusinessManager = $facebookBusinessManager;
|
||||
$this->pixel = $pixel;
|
||||
$this->page = $page;
|
||||
$this->ad = $ad;
|
||||
$this->catalog = $catalog;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return User
|
||||
*/
|
||||
public function getUser()
|
||||
{
|
||||
return $this->user;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param User $user
|
||||
*
|
||||
* @return ContextPsFacebook
|
||||
*/
|
||||
public function setUser($user)
|
||||
{
|
||||
$this->user = $user;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return FacebookBusinessManager|null
|
||||
*/
|
||||
public function getFacebookBusinessManager()
|
||||
{
|
||||
return $this->facebookBusinessManager;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param FacebookBusinessManager|null $facebookBusinessManager
|
||||
*
|
||||
* @return ContextPsFacebook
|
||||
*/
|
||||
public function setFacebookBusinessManager($facebookBusinessManager)
|
||||
{
|
||||
$this->facebookBusinessManager = $facebookBusinessManager;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Pixel|null
|
||||
*/
|
||||
public function getPixel()
|
||||
{
|
||||
return $this->pixel;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Pixel|null $pixel
|
||||
*
|
||||
* @return ContextPsFacebook
|
||||
*/
|
||||
public function setPixel($pixel)
|
||||
{
|
||||
$this->pixel = $pixel;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Page|null
|
||||
*/
|
||||
public function getPage()
|
||||
{
|
||||
return $this->page;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Page|null $page
|
||||
*
|
||||
* @return ContextPsFacebook
|
||||
*/
|
||||
public function setPage($page)
|
||||
{
|
||||
$this->page = $page;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Ad|null
|
||||
*/
|
||||
public function getAd()
|
||||
{
|
||||
return $this->ad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Ad|null $ad
|
||||
*
|
||||
* @return ContextPsFacebook
|
||||
*/
|
||||
public function setAd($ad)
|
||||
{
|
||||
$this->ad = $ad;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Catalog|null
|
||||
*/
|
||||
public function getCatalog()
|
||||
{
|
||||
return $this->catalog;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Catalog|null $catalog
|
||||
*
|
||||
* @return ContextPsFacebook
|
||||
*/
|
||||
public function setCatalog($catalog)
|
||||
{
|
||||
$this->catalog = $catalog;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function jsonSerialize()
|
||||
{
|
||||
return [
|
||||
'user' => $this->getUser(),
|
||||
'pixel' => $this->getPixel(),
|
||||
'facebookBusinessManager' => $this->getFacebookBusinessManager(),
|
||||
'page' => $this->getPage(),
|
||||
'ads' => $this->getAd(),
|
||||
'catalog' => $this->getCatalog(),
|
||||
];
|
||||
}
|
||||
}
|
||||
77
modules/ps_facebook/classes/DTO/EventBusProduct.php
Normal file
77
modules/ps_facebook/classes/DTO/EventBusProduct.php
Normal file
@@ -0,0 +1,77 @@
|
||||
<?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;
|
||||
|
||||
class EventBusProduct
|
||||
{
|
||||
public const POSITION_PRODUCT_ID = 0;
|
||||
public const POSITION_PRODUCT_ATTRIBUTE_ID = 1;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
private $productId;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
private $productAttributeId;
|
||||
|
||||
/**
|
||||
* @return int
|
||||
*/
|
||||
public function getProductId()
|
||||
{
|
||||
return $this->productId;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param int $productId
|
||||
*
|
||||
* @return EventBusProduct
|
||||
*/
|
||||
public function setProductId($productId)
|
||||
{
|
||||
$this->productId = $productId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return int
|
||||
*/
|
||||
public function getProductAttributeId()
|
||||
{
|
||||
return $this->productAttributeId;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param int $productAttributeId
|
||||
*
|
||||
* @return EventBusProduct
|
||||
*/
|
||||
public function setProductAttributeId($productAttributeId)
|
||||
{
|
||||
$this->productAttributeId = $productAttributeId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
86
modules/ps_facebook/classes/DTO/Object/Ad.php
Normal file
86
modules/ps_facebook/classes/DTO/Object/Ad.php
Normal 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(),
|
||||
];
|
||||
}
|
||||
}
|
||||
86
modules/ps_facebook/classes/DTO/Object/Catalog.php
Normal file
86
modules/ps_facebook/classes/DTO/Object/Catalog.php
Normal 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(),
|
||||
];
|
||||
}
|
||||
}
|
||||
@@ -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(),
|
||||
];
|
||||
}
|
||||
}
|
||||
103
modules/ps_facebook/classes/DTO/Object/Page.php
Normal file
103
modules/ps_facebook/classes/DTO/Object/Page.php
Normal 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(),
|
||||
];
|
||||
}
|
||||
}
|
||||
120
modules/ps_facebook/classes/DTO/Object/Pixel.php
Normal file
120
modules/ps_facebook/classes/DTO/Object/Pixel.php
Normal 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(),
|
||||
];
|
||||
}
|
||||
}
|
||||
51
modules/ps_facebook/classes/DTO/Object/User.php
Normal file
51
modules/ps_facebook/classes/DTO/Object/User.php
Normal 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(),
|
||||
];
|
||||
}
|
||||
}
|
||||
28
modules/ps_facebook/classes/DTO/Object/index.php
Normal file
28
modules/ps_facebook/classes/DTO/Object/index.php
Normal 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;
|
||||
28
modules/ps_facebook/classes/DTO/index.php
Normal file
28
modules/ps_facebook/classes/DTO/index.php
Normal 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;
|
||||
Reference in New Issue
Block a user