File Manager Lite
Dir:
/home/u540325668/domains/dumbafarm.in/public_html/src/PrestaShopBundle/Entity
Upload
[..]
AdminFilter.php (9.41 KB)
Edit
Rename
Del
ApiAccess.php (4.04 KB)
Edit
Rename
Del
Attribute.php (5.08 KB)
Edit
Rename
Del
AuthorizedApplication.php (2.64 KB)
Edit
Rename
Del
FeatureFlag.php (5.67 KB)
Edit
Rename
Del
Lang.php (6.93 KB)
Edit
Rename
Del
ModuleHistory.php (3.8 KB)
Edit
Rename
Del
Repository/
Rename
Del
Shop.php (5.58 KB)
Edit
Rename
Del
ShopGroup.php (5.41 KB)
Edit
Rename
Del
Tab.php (4.47 KB)
Edit
Rename
Del
Translation.php (4.04 KB)
Edit
Rename
Del
Edit: Shop.php
<?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 Open Software License (OSL 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/OSL-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. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to https://devdocs.prestashop.com/ for more information. * * @author PrestaShop SA and Contributors <contact@prestashop.com> * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShopBundle\Entity; use Doctrine\Common\Collections\Collection; use Doctrine\ORM\Mapping as ORM; /** * Shop. * * @ORM\Table() * @ORM\Entity(repositoryClass="PrestaShopBundle\Entity\Repository\ShopRepository") */ class Shop { /** * @var int * * @ORM\Id * @ORM\Column(name="id_shop", type="integer") * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @ORM\ManyToOne(targetEntity="PrestaShopBundle\Entity\ShopGroup", inversedBy="shops") * @ORM\JoinColumn(name="id_shop_group", referencedColumnName="id_shop_group", nullable=false) */ private $shopGroup; /** * @var string * * @ORM\Column(name="name", type="string", length=64) */ private $name; /** * @var string * * @ORM\Column(name="color", type="string", length=50) */ private $color; /** * @var int * * @ORM\Column(name="id_category", type="integer") */ private $idCategory; /** * @var string * * @ORM\Column(name="theme_name", type="string", length=255) */ private $themeName; /** * @var bool * * @ORM\Column(name="active", type="boolean") */ private $active; /** * @var bool * * @ORM\Column(name="deleted", type="boolean") */ private $deleted; /** * @var Collection * * One group shop has many shops. This is the inverse side. * @ORM\OneToMany(targetEntity="PrestaShopBundle\Entity\ShopUrl", mappedBy="shop") */ private $shopUrls; /** * Get id. * * @return int */ public function getId() { return $this->id; } /** * Set name. * * @param string $name * * @return Shop */ public function setName($name) { $this->name = $name; return $this; } /** * Get name. * * @return string */ public function getName() { return $this->name; } /** * @param string $color * * @return Shop */ public function setColor(string $color): Shop { $this->color = $color; return $this; } /** * @return string */ public function getColor(): ?string { return $this->color; } /** * Set idCategory. * * @param int $idCategory * * @return Shop */ public function setIdCategory($idCategory) { $this->idCategory = $idCategory; return $this; } /** * Get idCategory. * * @return int */ public function getIdCategory() { return $this->idCategory; } /** * Set themeName. * * @param string $themeName * * @return Shop */ public function setThemeName($themeName) { $this->themeName = $themeName; return $this; } /** * Get themeName. * * @return string */ public function getThemeName() { return $this->themeName; } /** * Set active. * * @param bool $active * * @return Shop */ public function setActive($active) { $this->active = $active; return $this; } /** * Get active. * * @return bool */ public function getActive() { return $this->active; } /** * Set deleted. * * @param bool $deleted * * @return Shop */ public function setDeleted($deleted) { $this->deleted = $deleted; return $this; } /** * Get deleted. * * @return bool */ public function getDeleted() { return $this->deleted; } /** * Set shopGroup. * * @param \PrestaShopBundle\Entity\ShopGroup $shopGroup * * @return Shop */ public function setShopGroup(ShopGroup $shopGroup) { $this->shopGroup = $shopGroup; return $this; } /** * Get shopGroup. * * @return \PrestaShopBundle\Entity\ShopGroup */ public function getShopGroup() { return $this->shopGroup; } /** * @return Collection */ public function getShopUrls(): Collection { return $this->shopUrls; } /** * @return bool */ public function hasMainUrl(): bool { foreach ($this->shopUrls as $shopUrl) { if ($shopUrl->getActive() && $shopUrl->getMain()) { return true; } } return false; } }
Simpan