vendor/indabasolutions/webtoprintdownloadbundle/IndabaSolutionsWebToPrintDownloadBundle.php line 10

Open in your IDE?
  1. <?php
  2. // created by: Cesar Bianchi
  3. namespace IndabaSolutions\WebToPrintDownloadBundle;
  4. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  5. use Pimcore\Extension\Bundle\Traits\PackageVersionTrait;
  6. class IndabaSolutionsWebToPrintDownloadBundle extends AbstractPimcoreBundle
  7. {
  8.     use PackageVersionTrait;
  9.     
  10.     protected function getComposerPackageName(): string
  11.     {
  12.         return 'indabasolutions/webtoprintdownloadbundle';
  13.     }
  14.     public function getJsPaths()
  15.     {
  16.         return [
  17.             '/bundles/indabasolutionswebtoprintdownload/js/pimcore/startup.js',
  18.         ];
  19.     }
  20. }