bundles/MockBundle/MockBundle.php line 15

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 MockBundle;
  11. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  12. class MockBundle extends AbstractPimcoreBundle
  13. {
  14.     public function getNiceName()
  15.     {
  16.         return 'Asioso - Mock Bundle';
  17.     }
  18.     public function getJsPaths()
  19.     {
  20.         return [
  21.             '/bundles/mock/js/pimcore/startup.js'
  22.         ];
  23.     }
  24.     public function getVersion()
  25.     {
  26.         return 'v0.1';
  27.     }
  28. }