bundles/ImportBundle/ImportBundle.php line 16

Open in your IDE?
  1. <?php
  2. /**
  3.  * This source file is available under  GNU General Public License version 3 (GPLv3)
  4.  *
  5.  * Full copyright and license information is available in LICENSE.md which is distributed with this source code.
  6.  *
  7.  *  @copyright  Copyright (c) Asioso GmbH (https://www.asioso.com)
  8.  *
  9.  */
  10. namespace ImportBundle;
  11. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  12. use Pimcore\Extension\Bundle\PimcoreBundleInterface;
  13. class ImportBundle extends AbstractPimcoreBundle implements PimcoreBundleInterface
  14. {
  15.     public function getNiceName()
  16.     {
  17.         return 'Asioso - PIMport Bundle';
  18.     }
  19.     /**
  20.      * Bundle description as shown in extension manager
  21.      *
  22.      * @return string
  23.      */
  24.     public function getDescription()
  25.     {
  26.         return "";
  27.     }
  28.     public function getVersion()
  29.     {
  30.         return 'v0.1';
  31.     }
  32.     public function getJsPaths()
  33.     {
  34.         return [
  35.           "/bundles/import/js/pimcore/startup.js",
  36.           "/bundles/import/js/pimcore/notification/helper.js",
  37.           "/bundles/import/js/pimcore/configuration/components/mapping/datatarget/fieldCollection.js",
  38.         ];
  39.     }
  40. }