<?php
namespace App\Entity\System;
use Doctrine\ORM\Mapping as ORM;
/**
* SubscriptionLine.
*
* @ORM\Table(name="ps_syncronised_shop_configuration")
*
* @ORM\Entity(repositoryClass="App\Repository\System\SynchronisedShopConfigurationRepository")
*/
class SynchronisedShopConfiguration
{
public const SHOP_CATALOGUE_MAP = [
ShopTopic::COMPLETE_CATALOGUE_ID => 'complete',
ShopTopic::PERFUME_CATALOGUE_ID => 'perfume',
ShopTopic::ELECTRONICS_CATALOGUE_ID => 'electronics',
ShopTopic::SEXSHOP_CATALOGUE_ID => 'sexshop',
ShopTopic::WATCHES_CATALOGUE_ID => 'watches-and-complements',
ShopTopic::KITCHEN_CATALOGUE_ID => 'kitchen',
ShopTopic::COSTUMES_CATALOGUE_ID => 'costumes',
ShopTopic::COMPUTERS_CATALOGUE_ID => 'computers',
ShopTopic::LICENSES_CATALOGUE_ID => 'licenses',
ShopTopic::PETS_CATALOGUE_ID => 'pets',
ShopTopic::HOME_DECOR_CATALOGUE_ID => 'home-and-decor',
];
/** @deprecated Versiones desactualizadas. Borrar usos. */
public const PRESTA_VERSION = '1.7.6.9';
/** @deprecated Versiones desactualizadas. Borrar usos. */
public const SYNCRO_VERSION = 'BigConnector.1.0';
/**
* @var int
*
* @ORM\Id
*
* @ORM\GeneratedValue(strategy="AUTO")
*
* @ORM\Column(type="integer", name="id_sincronate_shop_configuration",length=10)
*/
private $id;
/**
* @var Customer|null
*
* @ORM\ManyToOne(targetEntity="App\Entity\System\Customer", inversedBy="syncronisedShopConfiguration")
*
* @ORM\JoinColumn(name="id_customer", referencedColumnName="id_customer")
*/
private $customer;
/**
* @var int|null
*
* @ORM\Column(type="integer", name="id_order",length=10, nullable=true)
*/
private $orderId;
/**
* @var int|null
*
* @ORM\Column(type="integer", name="id_order_detail",length=10, nullable=true)
*/
private $orderDetailId;
/**
* @var string|null
*
* @ORM\Column(type="string", name="domain",length=200, nullable=true)
*/
private $domain;
/**
* @var string|null
*
* @ORM\Column(type="string", length=32, nullable=true)
*/
private $name;
/**
* @var string|null
*
* @ORM\Column(type="string", length=32, nullable=true)
*/
private $vatNumber;
/**
* @var string|null
*
* @ORM\Column(type="string", length=128, nullable=true)
*/
private $address;
/**
* @var string|null
*
* @ORM\Column(type="string", length=12, nullable=true)
*/
private $postcode;
/**
* @var string|null
*
* @ORM\Column(type="string", length=64, nullable=true)
*/
private $city;
/**
* @var string|null
*
* @ORM\Column(type="string", length=128, nullable=true)
*/
private $email;
/**
* @var string|null
*
* @ORM\Column(type="string", length=32, nullable=true)
*/
private $phone;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $hostSsh;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $portSsh;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $userSsh;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $passwordSsh;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $passwordSshRoot;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $pleskHost;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $pleskUser;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $pleskPassword;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $bdHost;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $bdName;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $bdUser;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $bdUserShow;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $bdPassword;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $bdPasswordShow;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $ftpHost;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $ftpUser;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $ftpPassword;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $ftpPasswordRoot;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $ftpRoot;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $logo;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $favicon;
/**
* @var string|null
*
* @ORM\Column(type="text", name="cms_quienes", nullable=true)
*/
private $cmsWho;
/**
* @var string|null
*
* @ORM\Column(type="text", name="cms_privacidad", nullable=true)
*/
private $cmsPrivacy;
/**
* @var string|null
*
* @ORM\Column(type="text", name="cms_contacta", nullable=true)
*/
private $cmsContact;
/**
* @var int
*
* @ORM\Column(type="integer", columnDefinition="tinyint(1)", options={"default" : 1})
*/
private $state;
/**
* @var string|null
*
* @ORM\Column(type="text", nullable=true)
*/
private $langs;
/**
* @ORM\OneToOne(targetEntity="App\Entity\System\Language")
*
* @ORM\JoinColumn(name="main_language", referencedColumnName="id_lang", nullable=true)
*/
private ?Language $mainLanguage;
/**
* @var int|null
*
* @ORM\Column(type="integer", length=11, nullable=true)
*/
private $countryVat;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, options={"default" : "['EUR']"})
*/
private $currency;
/**
* @var string|null
*
* @ORM\Column(type="text", nullable=true)
*/
private $extratext;
/**
* @var string|null
*
* @ORM\Column(type="text", nullable=true)
*/
private $extraconf;
/**
* @var string|null
*
* @ORM\Column(type="text", nullable=true)
*/
private $info;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $syncroHost;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $syncroUser;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $syncroPassword;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $syncroIp;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $controlpanelUrl;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $controlpanelUser;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $controlpanelPassword;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $webmailUrl;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $webmailEmail;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $webmailPassword;
/**
* @var bool
*
* @ORM\Column(type="boolean", columnDefinition="tinyint(4)", options={"default" : 0})
*/
private $difficulty;
/**
* @var \DateTime|null
*
* @ORM\Column(type="datetime", nullable=true)
*/
private $estimatedDate;
/**
* @var \DateTime|null
*
* @ORM\Column(type="datetime", nullable=true)
*/
private $manipDate;
/**
* @var \DateTime|null
*
* @ORM\Column(type="datetime")
*/
private $pleskChanged;
/**
* @var string
*
* @ORM\Column(type="string", length=10, options={"default" : "1.7.3.3"})
*/
private $prestaVersion;
/**
* @var string
*
* @ORM\Column(type="string", length=20, options={"default" : "BigConnector.1.0"})
*/
private $syncroVersion;
/**
* @var bool
*
* @ORM\Column(type="boolean", name="exclude_passwords_restriction", columnDefinition="tinyint(4)", options={"default" : 0})
*/
private $excludePasswordRestriction;
/**
* @var string|null
*
* @ORM\Column(type="string", length=40, nullable=true)
*/
private $hostingProvider;
/**
* @var int|null
*
* @ORM\Column(type="integer", length=11, nullable=true)
*/
private $employee;
/**
* @var int|null
*
* @ORM\Column(type="integer", length=11, nullable=true)
*/
private $idShopProduct;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $template;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $topic;
/**
* @var string|null
*
* @ORM\Column(type="string", length=150, nullable=true)
*/
private $blogHost;
/**
* @var string|null
*
* @ORM\Column(type="string", length=150, nullable=true)
*/
private $blogUser;
/**
* @var string|null
*
* @ORM\Column(type="string", length=150, nullable=true)
*/
private $blogPassword;
/**
* @var bool|null
*
* @ORM\Column(type="boolean", nullable=true, columnDefinition="tinyint(4)", options={"default" : 0})
*/
private $facebookModule;
/**
* @var bool|null
*
* @ORM\Column(type="boolean", nullable=true, columnDefinition="tinyint(4)", options={"default" : 0})
*/
private $mailchimp;
/**
* @var string|null
*
* @ORM\Column(type="text", nullable=true)
*/
private $mailchimpCode;
/**
* @var string|null
*
* @ORM\Column(type="text", nullable=true)
*/
private $taxes;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $domainHost;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $domainUser;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $domainPassword;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $domainRegistered;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $backupHost;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $backupUser;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $backupPassword;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $bdBlogHost;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $bdBlogName;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $bdBlogUser;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $bdBlogUserShow;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $bdBlogPassword;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $bdBlogPasswordShow;
/**
* @var string|null
*
* @ORM\Column(type="string", name="dominio_shopify", length=100, nullable=true)
*/
private $domainShopify;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $emailShopify;
/**
* @var string|null
*
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $passwordShopify;
/**
* @var int|null
*
* @ORM\Column(type="integer", length=11, nullable=true)
*/
private $countryShopify;
/**
* @var string|null
*
* @ORM\Column(type="string", name="estado_provincia_shopify", length=100, nullable=true)
*/
private $stateProvinceShopify;
/**
* @var string|null
*
* @ORM\Column(type="string", name="direccion_shopify", length=100, nullable=true)
*/
private $addressShopify;
/**
* @var string|null
*
* @ORM\Column(type="string", name="poblacion_ciudad_shopify", length=100, nullable=true)
*/
private $populationCityShopify;
/**
* @var string|null
*
* @ORM\Column(type="string", name="codigo_postal_shopify", length=100, nullable=true)
*/
private $postalCodeShopify;
/**
* @var int|null
*
* @ORM\Column(type="integer", length=11, nullable=true)
*/
private $mipSellingChannelId;
/**
* @var bool
*
* @ORM\Column(type="boolean", options={"default" : 0}, nullable=false)
*/
private $customizedLogo;
public function getId(): int
{
return $this->id;
}
public function setId(int $id): self
{
$this->id = $id;
return $this;
}
public function getCustomer(): ?Customer
{
return $this->customer;
}
public function setCustomer(?Customer $customer): self
{
$this->customer = $customer;
return $this;
}
public function getOrderId(): ?int
{
return $this->orderId;
}
public function setOrderId(?int $orderId): self
{
$this->orderId = $orderId;
return $this;
}
public function getOrderDetailId(): ?int
{
return $this->orderDetailId;
}
public function setOrderDetailId(?int $orderDetailId): void
{
$this->orderDetailId = $orderDetailId;
}
public function getDomain(): ?string
{
return $this->domain;
}
public function setDomain(?string $domain): self
{
$this->domain = $domain;
return $this;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(?string $name): self
{
$this->name = $name;
return $this;
}
public function getVatNumber(): ?string
{
return $this->vatNumber;
}
public function setVatNumber(?string $vatNumber): self
{
$this->vatNumber = $vatNumber;
return $this;
}
public function getAddress(): ?string
{
return $this->address;
}
public function setAddress(?string $address): self
{
$this->address = $address;
return $this;
}
public function getPostcode(): ?string
{
return $this->postcode;
}
public function setPostcode(?string $postcode): self
{
$this->postcode = $postcode;
return $this;
}
public function getCity(): ?string
{
return $this->city;
}
public function setCity(?string $city): self
{
$this->city = $city;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(?string $email): self
{
$this->email = $email;
return $this;
}
public function getPhone(): ?string
{
return $this->phone;
}
public function setPhone(?string $phone): self
{
$this->phone = $phone;
return $this;
}
public function getHostSsh(): ?string
{
return $this->hostSsh;
}
public function setHostSsh(?string $hostSsh): self
{
$this->hostSsh = $hostSsh;
return $this;
}
public function getPortSsh(): ?string
{
return $this->portSsh;
}
public function setPortSsh(?string $portSsh): self
{
$this->portSsh = $portSsh;
return $this;
}
public function getUserSsh(): ?string
{
return $this->userSsh;
}
public function setUserSsh(?string $userSsh): self
{
$this->userSsh = $userSsh;
return $this;
}
public function getPasswordSsh(): ?string
{
return $this->passwordSsh;
}
public function setPasswordSsh(?string $passwordSsh): self
{
$this->passwordSsh = $passwordSsh;
return $this;
}
public function getPasswordSshRoot(): ?string
{
return $this->passwordSshRoot;
}
public function setPasswordSshRoot(?string $passwordSshRoot): self
{
$this->passwordSshRoot = $passwordSshRoot;
return $this;
}
public function getPleskHost(): ?string
{
return $this->pleskHost;
}
public function setPleskHost(?string $pleskHost): self
{
$this->pleskHost = $pleskHost;
return $this;
}
public function getPleskUser(): ?string
{
return $this->pleskUser;
}
public function setPleskUser(?string $pleskUser): self
{
$this->pleskUser = $pleskUser;
return $this;
}
public function getPleskPassword(): ?string
{
return $this->pleskPassword;
}
public function setPleskPassword(?string $pleskPassword): self
{
$this->pleskPassword = $pleskPassword;
return $this;
}
public function getBdHost(): ?string
{
return $this->bdHost;
}
public function setBdHost(?string $bdHost): self
{
$this->bdHost = $bdHost;
return $this;
}
public function getBdName(): ?string
{
return $this->bdName;
}
public function setBdName(?string $bdName): self
{
$this->bdName = $bdName;
return $this;
}
public function getBdUser(): ?string
{
return $this->bdUser;
}
public function setBdUser(?string $bdUser): self
{
$this->bdUser = $bdUser;
return $this;
}
public function getBdUserShow(): ?string
{
return $this->bdUserShow;
}
public function setBdUserShow(?string $bdUserShow): self
{
$this->bdUserShow = $bdUserShow;
return $this;
}
public function getBdPassword(): ?string
{
return $this->bdPassword;
}
public function setBdPassword(?string $bdPassword): self
{
$this->bdPassword = $bdPassword;
return $this;
}
public function getBdPasswordShow(): ?string
{
return $this->bdPasswordShow;
}
public function setBdPasswordShow(?string $bdPasswordShow): self
{
$this->bdPasswordShow = $bdPasswordShow;
return $this;
}
public function getFtpHost(): ?string
{
return $this->ftpHost;
}
public function setFtpHost(?string $ftpHost): self
{
$this->ftpHost = $ftpHost;
return $this;
}
public function getFtpUser(): ?string
{
return $this->ftpUser;
}
public function setFtpUser(?string $ftpUser): self
{
$this->ftpUser = $ftpUser;
return $this;
}
public function getFtpPassword(): ?string
{
return $this->ftpPassword;
}
public function setFtpPassword(?string $ftpPassword): self
{
$this->ftpPassword = $ftpPassword;
return $this;
}
public function getFtpPasswordRoot(): ?string
{
return $this->ftpPasswordRoot;
}
public function setFtpPasswordRoot(?string $ftpPasswordRoot): self
{
$this->ftpPasswordRoot = $ftpPasswordRoot;
return $this;
}
public function getFtpRoot(): ?string
{
return $this->ftpRoot;
}
public function setFtpRoot(?string $ftpRoot): self
{
$this->ftpRoot = $ftpRoot;
return $this;
}
public function getLogo(): ?string
{
return $this->logo;
}
public function setLogo(?string $logo): self
{
$this->logo = $logo;
return $this;
}
public function getFavicon(): ?string
{
return $this->favicon;
}
public function setFavicon(?string $favicon): self
{
$this->favicon = $favicon;
return $this;
}
public function getCmsWho(): ?string
{
return $this->cmsWho;
}
public function setCmsWho(?string $cmsWho): self
{
$this->cmsWho = $cmsWho;
return $this;
}
public function getCmsPrivacy(): ?string
{
return $this->cmsPrivacy;
}
public function setCmsPrivacy(?string $cmsPrivacy): self
{
$this->cmsPrivacy = $cmsPrivacy;
return $this;
}
public function getCmsContact(): ?string
{
return $this->cmsContact;
}
public function setCmsContact(?string $cmsContact): self
{
$this->cmsContact = $cmsContact;
return $this;
}
public function getState(): int
{
return $this->state;
}
public function setState(int $state): self
{
$this->state = $state;
return $this;
}
public function getLangs(): ?string
{
return $this->langs;
}
public function setLangs(?string $langs): self
{
$this->langs = $langs;
return $this;
}
public function getMainLanguage(): ?Language
{
return $this->mainLanguage;
}
public function setMainLanguage(?Language $mainLanguage): self
{
$this->mainLanguage = $mainLanguage;
return $this;
}
public function getCountryVat(): ?int
{
return $this->countryVat;
}
public function setCountryVat(?int $countryVat): self
{
$this->countryVat = $countryVat;
return $this;
}
public function getCurrency(): ?string
{
return $this->currency;
}
public function setCurrency(?string $currency): self
{
$this->currency = $currency;
return $this;
}
public function getExtratext(): ?string
{
return $this->extratext;
}
public function setExtratext(?string $extratext): self
{
$this->extratext = $extratext;
return $this;
}
public function getExtraconf(): ?string
{
return $this->extraconf;
}
public function setExtraconf(?string $extraconf): self
{
$this->extraconf = $extraconf;
return $this;
}
public function getInfo(): ?string
{
return $this->info;
}
public function setInfo(?string $info): self
{
$this->info = $info;
return $this;
}
public function getSyncroHost(): ?string
{
return $this->syncroHost;
}
public function setSyncroHost(?string $syncroHost): self
{
$this->syncroHost = $syncroHost;
return $this;
}
public function getSyncroUser(): ?string
{
return $this->syncroUser;
}
public function setSyncroUser(?string $syncroUser): self
{
$this->syncroUser = $syncroUser;
return $this;
}
public function getSyncroPassword(): ?string
{
return $this->syncroPassword;
}
public function setSyncroPassword(?string $syncroPassword): self
{
$this->syncroPassword = $syncroPassword;
return $this;
}
public function getSyncroIp(): ?string
{
return $this->syncroIp;
}
public function setSyncroIp(?string $syncroIp): self
{
$this->syncroIp = $syncroIp;
return $this;
}
public function getControlpanelUrl(): ?string
{
return $this->controlpanelUrl;
}
public function setControlpanelUrl(?string $controlpanelUrl): self
{
$this->controlpanelUrl = $controlpanelUrl;
return $this;
}
public function getControlpanelUser(): ?string
{
return $this->controlpanelUser;
}
public function setControlpanelUser(?string $controlpanelUser): self
{
$this->controlpanelUser = $controlpanelUser;
return $this;
}
public function getControlpanelPassword(): ?string
{
return $this->controlpanelPassword;
}
public function setControlpanelPassword(?string $controlpanelPassword): self
{
$this->controlpanelPassword = $controlpanelPassword;
return $this;
}
public function getWebmailUrl(): ?string
{
return $this->webmailUrl;
}
public function setWebmailUrl(?string $webmailUrl): self
{
$this->webmailUrl = $webmailUrl;
return $this;
}
public function getWebmailEmail(): ?string
{
return $this->webmailEmail;
}
public function setWebmailEmail(?string $webmailEmail): self
{
$this->webmailEmail = $webmailEmail;
return $this;
}
public function getWebmailPassword(): ?string
{
return $this->webmailPassword;
}
public function setWebmailPassword(?string $webmailPassword): self
{
$this->webmailPassword = $webmailPassword;
return $this;
}
public function isDifficulty(): bool
{
return $this->difficulty;
}
public function setDifficulty(bool $difficulty): self
{
$this->difficulty = $difficulty;
return $this;
}
public function getEstimatedDate(): ?\DateTime
{
return $this->estimatedDate;
}
public function setEstimatedDate(?\DateTime $estimatedDate): self
{
$this->estimatedDate = $estimatedDate;
return $this;
}
public function getManipDate(): ?\DateTime
{
return $this->manipDate;
}
public function setManipDate(?\DateTime $manipDate): self
{
$this->manipDate = $manipDate;
return $this;
}
public function getPleskChanged(): \DateTime
{
return $this->pleskChanged;
}
public function setPleskChanged(\DateTime $pleskChanged): self
{
$this->pleskChanged = $pleskChanged;
return $this;
}
public function getPrestaVersion(): ?string
{
return $this->prestaVersion;
}
/**
* @deprecated
*
* @param string|null $prestaVersion
*/
public function setPrestaVersion(string $prestaVersion): self
{
$this->prestaVersion = $prestaVersion;
return $this;
}
public function getSyncroVersion(): string
{
return $this->syncroVersion;
}
/**
* @deprecated
*/
public function setSyncroVersion(string $syncroVersion): self
{
$this->syncroVersion = $syncroVersion;
return $this;
}
public function isExcludePasswordRestriction(): bool
{
return $this->excludePasswordRestriction;
}
public function setExcludePasswordRestriction(bool $excludePasswordRestriction): self
{
$this->excludePasswordRestriction = $excludePasswordRestriction;
return $this;
}
public function getHostingProvider(): ?string
{
return $this->hostingProvider;
}
public function setHostingProvider(?string $hostingProvider): self
{
$this->hostingProvider = $hostingProvider;
return $this;
}
public function getEmployee(): ?int
{
return $this->employee;
}
public function setEmployee(?int $employee): self
{
$this->employee = $employee;
return $this;
}
public function getIdShopProduct(): ?int
{
return $this->idShopProduct;
}
public function setIdShopProduct(?int $idShopProduct): self
{
$this->idShopProduct = $idShopProduct;
return $this;
}
public function getTemplate(): ?string
{
return $this->template;
}
public function setTemplate(?string $template): self
{
$this->template = $template;
return $this;
}
public function getTopic(): ?string
{
return $this->topic;
}
public function setTopic(?string $topic): self
{
$this->topic = $topic;
return $this;
}
public function getBlogHost(): ?string
{
return $this->blogHost;
}
public function setBlogHost(?string $blogHost): self
{
$this->blogHost = $blogHost;
return $this;
}
public function getBlogUser(): ?string
{
return $this->blogUser;
}
public function setBlogUser(?string $blogUser): self
{
$this->blogUser = $blogUser;
return $this;
}
public function getBlogPassword(): ?string
{
return $this->blogPassword;
}
public function setBlogPassword(?string $blogPassword): self
{
$this->blogPassword = $blogPassword;
return $this;
}
public function getFacebookModule(): ?bool
{
return $this->facebookModule;
}
public function setFacebookModule(?bool $facebookModule): self
{
$this->facebookModule = $facebookModule;
return $this;
}
public function getMailchimp(): ?bool
{
return $this->mailchimp;
}
public function setMailchimp(?bool $mailchimp): self
{
$this->mailchimp = $mailchimp;
return $this;
}
public function getMailchimpCode(): ?string
{
return $this->mailchimpCode;
}
public function setMailchimpCode(?string $mailchimpCode): self
{
$this->mailchimpCode = $mailchimpCode;
return $this;
}
public function getTaxes(): ?string
{
return $this->taxes;
}
public function setTaxes(?string $taxes): self
{
$this->taxes = $taxes;
return $this;
}
public function getDomainHost(): ?string
{
return $this->domainHost;
}
public function setDomainHost(?string $domainHost): self
{
$this->domainHost = $domainHost;
return $this;
}
public function getDomainUser(): ?string
{
return $this->domainUser;
}
public function setDomainUser(?string $domainUser): self
{
$this->domainUser = $domainUser;
return $this;
}
public function getDomainPassword(): ?string
{
return $this->domainPassword;
}
public function setDomainPassword(?string $domainPassword): self
{
$this->domainPassword = $domainPassword;
return $this;
}
public function getDomainRegistered(): ?string
{
return $this->domainRegistered;
}
public function setDomainRegistered(?string $domainRegistered): self
{
$this->domainRegistered = $domainRegistered;
return $this;
}
public function getBackupHost(): ?string
{
return $this->backupHost;
}
public function setBackupHost(?string $backupHost): self
{
$this->backupHost = $backupHost;
return $this;
}
public function getBackupUser(): ?string
{
return $this->backupUser;
}
public function setBackupUser(?string $backupUser): self
{
$this->backupUser = $backupUser;
return $this;
}
public function getBackupPassword(): ?string
{
return $this->backupPassword;
}
public function setBackupPassword(?string $backupPassword): self
{
$this->backupPassword = $backupPassword;
return $this;
}
public function getBdBlogHost(): ?string
{
return $this->bdBlogHost;
}
public function setBdBlogHost(?string $bdBlogHost): self
{
$this->bdBlogHost = $bdBlogHost;
return $this;
}
public function getBdBlogName(): ?string
{
return $this->bdBlogName;
}
public function setBdBlogName(?string $bdBlogName): self
{
$this->bdBlogName = $bdBlogName;
return $this;
}
public function getBdBlogUser(): ?string
{
return $this->bdBlogUser;
}
public function setBdBlogUser(?string $bdBlogUser): self
{
$this->bdBlogUser = $bdBlogUser;
return $this;
}
public function getBdBlogUserShow(): ?string
{
return $this->bdBlogUserShow;
}
public function setBdBlogUserShow(?string $bdBlogUserShow): self
{
$this->bdBlogUserShow = $bdBlogUserShow;
return $this;
}
public function getBdBlogPassword(): ?string
{
return $this->bdBlogPassword;
}
public function setBdBlogPassword(?string $bdBlogPassword): self
{
$this->bdBlogPassword = $bdBlogPassword;
return $this;
}
public function getBdBlogPasswordShow(): ?string
{
return $this->bdBlogPasswordShow;
}
public function setBdBlogPasswordShow(?string $bdBlogPasswordShow): self
{
$this->bdBlogPasswordShow = $bdBlogPasswordShow;
return $this;
}
public function getDomainShopify(): ?string
{
return $this->domainShopify;
}
public function setDomainShopify(?string $domainShopify): self
{
$this->domainShopify = $domainShopify;
return $this;
}
public function getEmailShopify(): ?string
{
return $this->emailShopify;
}
public function setEmailShopify(?string $emailShopify): self
{
$this->emailShopify = $emailShopify;
return $this;
}
public function getPasswordShopify(): ?string
{
return $this->passwordShopify;
}
public function setPasswordShopify(?string $passwordShopify): self
{
$this->passwordShopify = $passwordShopify;
return $this;
}
public function getCountryShopify(): ?int
{
return $this->countryShopify;
}
public function setCountryShopify(?int $countryShopify): self
{
$this->countryShopify = $countryShopify;
return $this;
}
public function getStateProvinceShopify(): ?string
{
return $this->stateProvinceShopify;
}
public function setStateProvinceShopify(?string $stateProvinceShopify): self
{
$this->stateProvinceShopify = $stateProvinceShopify;
return $this;
}
public function getAddressShopify(): ?string
{
return $this->addressShopify;
}
public function setAddressShopify(?string $addressShopify): self
{
$this->addressShopify = $addressShopify;
return $this;
}
public function getPopulationCityShopify(): ?string
{
return $this->populationCityShopify;
}
public function setPopulationCityShopify(?string $populationCityShopify): self
{
$this->populationCityShopify = $populationCityShopify;
return $this;
}
public function getPostalCodeShopify(): ?string
{
return $this->postalCodeShopify;
}
public function setPostalCodeShopify(?string $postalCodeShopify): self
{
$this->postalCodeShopify = $postalCodeShopify;
return $this;
}
public function getMipSellingChannelId(): ?int
{
return $this->mipSellingChannelId;
}
public function setMipSellingChannelId(?int $mipSellingChannelId): self
{
$this->mipSellingChannelId = $mipSellingChannelId;
return $this;
}
public function isCustomizedLogo(): bool
{
return $this->customizedLogo;
}
public function setCustomizedLogo(bool $customizedLogo): void
{
$this->customizedLogo = $customizedLogo;
}
}