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
AttributeGroup.php (5.65 KB)
Edit
Rename
Del
AttributeGroupLang.php (3.79 KB)
Edit
Rename
Del
AttributeLang.php (3.13 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
ProductDownload.php (5.89 KB)
Edit
Rename
Del
ProductIdentity.php (2.35 KB)
Edit
Rename
Del
Repository/
Rename
Del
Shop.php (5.58 KB)
Edit
Rename
Del
ShopGroup.php (5.41 KB)
Edit
Rename
Del
ShopUrl.php (4.46 KB)
Edit
Rename
Del
StockMvt.php (9.43 KB)
Edit
Rename
Del
Tab.php (4.47 KB)
Edit
Rename
Del
TabLang.php (2.63 KB)
Edit
Rename
Del
Translation.php (4.04 KB)
Edit
Rename
Del
Edit: Tab.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\ORM\Mapping as ORM; /** * Tab. * * @ORM\Table() * @ORM\Entity(repositoryClass="PrestaShopBundle\Entity\Repository\TabRepository") */ class Tab { /** * @var int * * @ORM\Id * @ORM\Column(name="id_tab", type="integer") * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @var int * * @ORM\Column(name="id_parent", type="integer") */ private $idParent; /** * @var int * * @ORM\Column(name="position", type="integer") */ private $position; /** * @var string * * @ORM\Column(name="module", type="string", length=64, nullable=true) */ private $module; /** * @var string * * @ORM\Column(name="class_name", type="string", length=64) */ private $className; /** * @var string * * @ORM\Column(name="route_name", type="string", length=256, nullable=true) */ private $routeName; /** * @var bool * * @ORM\Column(name="active", type="boolean") */ private $active; /** * @var bool * * @ORM\Column(name="enabled", type="boolean") */ private $enabled = true; /** * @var string * * @ORM\Column(name="icon", type="string", length=32, nullable=true) */ private $icon; /** * @var string|null * * @ORM\Column(name="wording", type="string", length=255, nullable=true) */ private $wording; /** * @var string|null * * @ORM\Column(name="wording_domain", type="string", length=255, nullable=true) */ private $wordingDomain; /** * @ORM\OneToMany(targetEntity="PrestaShopBundle\Entity\TabLang", mappedBy="id") */ private $tabLangs; public function getId() { return $this->id; } public function getIdParent() { return $this->idParent; } public function getPosition() { return $this->position; } public function getModule() { return $this->module; } public function getClassName() { return $this->className; } public function getActive() { return $this->active; } public function getIcon() { return $this->icon; } public function getTabLangs() { return $this->tabLangs; } /** * @return string|null */ public function getWording(): ?string { return $this->wording; } /** * @return string|null */ public function getWordingDomain(): ?string { return $this->wordingDomain; } /** * Set active. * * @param bool $active * * @return Tab */ public function setActive($active) { $this->active = $active; return $this; } /** * @return string */ public function getRouteName() { return $this->routeName; } /** * @param string $routeName * * @return Tab */ public function setRouteName($routeName) { $this->routeName = $routeName; return $this; } /** * @return bool */ public function isEnabled() { return $this->enabled; } /** * @param bool $enabled * * @return Tab */ public function setEnabled($enabled) { $this->enabled = $enabled; return $this; } }
Simpan