PATH:
root
/
presta2srcPrestaShopBundleEntity
<?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\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") * @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 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; /** * 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; } /** * 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; } }
[+]
..
[-] TabLang.php
[edit]
[-] Lang.php
[edit]
[-] StockMvt.php
[edit]
[-] AttributeGroupLang.php
[edit]
[-] Attribute.php
[edit]
[-] AdminFilter.php
[edit]
[-] ProductIdentity.php
[edit]
[-] Translation.php
[edit]
[-] Shop.php
[edit]
[-] ModuleHistory.php
[edit]
[+]
Repository
[-] Tab.php
[edit]
[-] ProductDownload.php
[edit]
[-] AttributeLang.php
[edit]
[-] ShopGroup.php
[edit]
[-] AttributeGroup.php
[edit]