vendor/pimcore/enterprise-subscription-tools/src/PimcoreEnterpriseSubscriptionToolsBundle.php line 18

Open in your IDE?
  1. <?php
  2. /**
  3.  * Pimcore
  4.  *
  5.  * This source file is available under following license:
  6.  * - Pimcore Commercial License (PCL)
  7.  *
  8.  *  @copyright  Copyright (c) Pimcore GmbH (http://www.pimcore.org)
  9.  *  @license    http://www.pimcore.org/license     PCL
  10.  */
  11. namespace Pimcore\Bundle\EnterpriseSubscriptionToolsBundle;
  12. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  13. use Pimcore\Extension\Bundle\Traits\PackageVersionTrait;
  14. class PimcoreEnterpriseSubscriptionToolsBundle extends AbstractPimcoreBundle
  15. {
  16.     use PackageVersionTrait;
  17.     public function getJsPaths()
  18.     {
  19.         return [
  20.             '/bundles/pimcoreenterprisesubscriptiontools/js/pimcore/startup.js'
  21.         ];
  22.     }
  23.     public function getCssPaths()
  24.     {
  25.         return [
  26.             '/bundles/pimcoreenterprisesubscriptiontools/css/pimcore/admin.css'
  27.         ];
  28.     }
  29.     /**
  30.      * Returns the composer package name used to resolve the version
  31.      *
  32.      * @return string
  33.      */
  34.     protected function getComposerPackageName(): string
  35.     {
  36.         return 'pimcore/enterprise-subscription-tools';
  37.     }
  38. }