bundles/Jabber/DataEnrichmentBundle/JabberDataEnrichmentBundle.php line 7

Open in your IDE?
  1. <?php
  2. namespace Jabber\DataEnrichmentBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. class JabberDataEnrichmentBundle extends AbstractPimcoreBundle
  5. {
  6.     public function getInstaller()
  7.     {
  8.         return $this->container->get(Installer::class);
  9.     }
  10.     public function getCssPaths(): array
  11.     {
  12.         return [
  13.             '/bundles/jabberdataenrichment/css/admin.css'
  14.         ];
  15.     }
  16.     
  17.     public function getJsPaths()
  18.     {
  19.         return [
  20.             '/bundles/jabberdataenrichment/js/pimcore/startup.js',
  21.             '/bundles/jabberdataenrichment/js/pimcore/enrichment.js',
  22.         ];
  23.     }
  24. }