vendor/coreshop/optimistic-entity-lock-bundle/CoreShopOptimisticEntityLockBundle.php line 24

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * CoreShop
  5.  *
  6.  * This source file is available under two different licenses:
  7.  *  - GNU General Public License version 3 (GPLv3)
  8.  *  - CoreShop Commercial License (CCL)
  9.  * Full copyright and license information is available in
  10.  * LICENSE.md which is distributed with this source code.
  11.  *
  12.  * @copyright  Copyright (c) CoreShop GmbH (https://www.coreshop.org)
  13.  * @license    https://www.coreshop.org/license     GPLv3 and CCL
  14.  *
  15.  */
  16. namespace CoreShop\Bundle\OptimisticEntityLockBundle;
  17. use Composer\InstalledVersions;
  18. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  19. class CoreShopOptimisticEntityLockBundle extends AbstractPimcoreBundle
  20. {
  21.     public function getNiceName(): string
  22.     {
  23.         return 'CoreShop - Optimistic Entity Lock';
  24.     }
  25.     public function getDescription(): string
  26.     {
  27.         return 'CoreShop - Optimistic Entity Lock Bundle';
  28.     }
  29.     public function getVersion(): string
  30.     {
  31.         if (class_exists('\\CoreShop\\Bundle\\CoreBundle\\Application\\Version')) {
  32.             return \CoreShop\Bundle\CoreBundle\Application\Version::getVersion() . ' (' $this->getComposerVersion() . ')';
  33.         }
  34.         return $this->getComposerVersion();
  35.     }
  36.     public function getComposerVersion(): string
  37.     {
  38.         $bundleName 'coreshop/optimistic-entity-lock-bundle';
  39.         if (class_exists(InstalledVersions::class)) {
  40.             if (InstalledVersions::isInstalled('coreshop/core-shop')) {
  41.                 return InstalledVersions::getPrettyVersion('coreshop/core-shop');
  42.             }
  43.             if (InstalledVersions::isInstalled($bundleName)) {
  44.                 return InstalledVersions::getPrettyVersion($bundleName);
  45.             }
  46.         }
  47.         return '';
  48.     }
  49.     public function getJsPaths(): array
  50.     {
  51.         return [];
  52.     }
  53.     public function getCssPaths(): array
  54.     {
  55.         return [];
  56.     }
  57.     public function getEditmodeJsPaths(): array
  58.     {
  59.         return [];
  60.     }
  61.     public function getEditmodeCssPaths(): array
  62.     {
  63.         return [];
  64.     }
  65. }