vendor/indabasolutions/csrepresentationbundle/IndabaSolutionsCSRepresentationBundle.php line 8

Open in your IDE?
  1. <?php
  2. namespace IndabaSolutions\CSRepresentationBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. use Pimcore\Extension\Bundle\Traits\PackageVersionTrait;
  5. class IndabaSolutionsCSRepresentationBundle extends AbstractPimcoreBundle
  6. {
  7.     use PackageVersionTrait;
  8.     
  9.     protected function getComposerPackageName(): string
  10.     {
  11.         return 'indabasolutions/csrepresentationbundle';
  12.     }
  13.     public function getJsPaths()
  14.     {
  15.         return [
  16.             '/bundles/indabasolutionscsrepresentation/js/pimcore/classificationStorePropertiesPanel.js',
  17.             '/bundles/indabasolutionscsrepresentation/js/pimcore/classificationStoreKeySelectionWindow.js',
  18.             '/bundles/indabasolutionscsrepresentation/js/pimcore/classificationStoreKeyDefinitionWindow.js',
  19.             '/bundles/indabasolutionscsrepresentation/js/pimcore/classificationStoreGroupsPanel.js',
  20.         ];
  21.     }
  22. }