vendor/pimcore/data-hub-simple-rest/src/PimcoreDataHubSimpleRestBundle.php line 23

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\DataHubSimpleRestBundle;
  12. use Pimcore\Bundle\DataHubBundle\PimcoreDataHubBundle;
  13. use Pimcore\Bundle\EnterpriseSubscriptionToolsBundle\Bundle\EnterpriseBundleInterface;
  14. use Pimcore\Bundle\EnterpriseSubscriptionToolsBundle\PimcoreEnterpriseSubscriptionToolsBundle;
  15. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  16. use Pimcore\Extension\Bundle\Traits\PackageVersionTrait;
  17. use Pimcore\HttpKernel\Bundle\DependentBundleInterface;
  18. use Pimcore\HttpKernel\BundleCollection\BundleCollection;
  19. class PimcoreDataHubSimpleRestBundle extends AbstractPimcoreBundle implements DependentBundleInterfaceEnterpriseBundleInterface
  20. {
  21.     use PackageVersionTrait;
  22.     public function getJsPaths()
  23.     {
  24.         return [
  25.             '/bundles/pimcoredatahubsimplerest/js/pimcore/startup.js',
  26.             '/bundles/pimcoredatahubsimplerest/js/pimcore/adapter/simpleRest.js',
  27.             '/bundles/pimcoredatahubsimplerest/js/pimcore/configuration/configItem.js',
  28.             '/bundles/pimcoredatahubsimplerest/js/pimcore/configuration/gridConfigDialog.js'
  29.         ];
  30.     }
  31.     public function getCssPaths()
  32.     {
  33.         return [
  34.             '/bundles/pimcoredatahubsimplerest/css/icons.css'
  35.         ];
  36.     }
  37.     /**
  38.      * Register bundles to collection.
  39.      *
  40.      * WARNING: this method will be called as soon as this bundle is added to the collection, independent if
  41.      * it will finally be included due to environment restrictions. If you need to load your dependencies conditionally,
  42.      * specify the environments to use on the collection item.
  43.      *
  44.      * @param BundleCollection $collection
  45.      */
  46.     public static function registerDependentBundles(BundleCollection $collection)
  47.     {
  48.         $collection->addBundle(PimcoreDataHubBundle::class, 20);
  49.         $collection->addBundle(new PimcoreEnterpriseSubscriptionToolsBundle());
  50.     }
  51.     /**
  52.      * @return string
  53.      */
  54.     public function getBundleLicenseId(): string
  55.     {
  56.         return 'DSR';
  57.     }
  58.     /**
  59.      * Returns the composer package name used to resolve the version
  60.      *
  61.      * @return string
  62.      */
  63.     protected function getComposerPackageName(): string
  64.     {
  65.         return 'pimcore/data-hub-simple-rest';
  66.     }
  67.     public function getInstaller()
  68.     {
  69.         return $this->container->get(Installer::class);
  70.     }
  71. }