src/Essesolutions/AttributeOptionBundle/EssesolutionsAttributeOptionBundle.php line 10

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Essesolutions\AttributeOptionBundle;
  4. use App\Essesolutions\AttributeOptionBundle\Service\Installer;
  5. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  6. class EssesolutionsAttributeOptionBundle extends AbstractPimcoreBundle
  7. {
  8.     /** {@inheritDoc} */
  9.     public function getJsPaths()
  10.     {
  11.         return [
  12.             '/bundles/essesolutionsattributeoption/js/pimcore/helpers.js',
  13.             '/bundles/essesolutionsattributeoption/js/pimcore/object/classes/data/manyToOneAttributeRelation.js',
  14.             '/bundles/essesolutionsattributeoption/js/pimcore/object/tags/manyToOneAttributeRelation.js',
  15.         ];
  16.     }
  17.     
  18.     /** {@inheritDoc} */
  19.     public function getCssPaths()
  20.     {
  21.         return [
  22.             '/bundles/essesolutionsattributeoption/css/icons.css',
  23.         ];
  24.     }
  25.     
  26.     /** {@inheritDoc} */
  27.     public function getInstaller()
  28.     {
  29.         return $this->container->get(Installer::class);
  30.     }
  31. }