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: ApiAccess.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) */ declare(strict_types=1); namespace PrestaShopBundle\Entity; use Doctrine\ORM\Mapping as ORM; use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity; /** * @ORM\Entity(repositoryClass="PrestaShopBundle\Entity\Repository\ApiAccessRepository") * @ORM\Table() * @UniqueEntity("name") * * @experimental */ class ApiAccess { /** * @var int * * @ORM\Id * @ORM\Column(name="id_api_access", type="integer", options={"unsigned":true}) * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @var string * * @ORM\Column(name="client_id", type="string", length=255) */ private $clientId; /** * @var string * * @ORM\Column(name="client_secret", type="string", length=255) */ private $clientSecret; /** * @var AuthorizedApplication * * @ORM\ManyToOne(targetEntity=AuthorizedApplication::class) * @ORM\JoinColumn(name="id_authorized_application", referencedColumnName="id_authorized_application", nullable=false, onDelete="CASCADE") */ private $authorizedApplication; /** * @var bool * * @ORM\Column(name="active", type="boolean") */ private $active; /** * @ORM\Column(name="scopes", type="array") */ private $scopes = []; /** * @return int */ public function getId(): int { return $this->id; } /** * @param int $id */ public function setId(int $id): void { $this->id = $id; } /** * @return string */ public function getClientId(): string { return $this->clientId; } /** * @param string $clientId */ public function setClientId(string $clientId): void { $this->clientId = $clientId; } /** * @return string */ public function getClientSecret(): string { return $this->clientSecret; } /** * @param mixed $clientSecret */ public function setClientSecret($clientSecret): void { $this->clientSecret = $clientSecret; } /** * @return AuthorizedApplication */ public function getAuthorizedApplication(): AuthorizedApplication { return $this->authorizedApplication; } /** * @param AuthorizedApplication $authorizedApplication */ public function setAuthorizedApplication(AuthorizedApplication $authorizedApplication): void { $this->authorizedApplication = $authorizedApplication; } /** * @return bool */ public function isActive(): bool { return $this->active; } /** * @param bool $active */ public function setActive(bool $active): void { $this->active = $active; } /** * @return array */ public function getScopes(): array { return $this->scopes; } /** * @param array $scopes */ public function setScopes(array $scopes): void { $this->scopes = $scopes; } }
Simpan