bundles/ConnectionApiSageBundle/ConnectionApiSageBundle.php line 11

Open in your IDE?
  1. <?php
  2. namespace ConnectionApiSageBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. /**
  5.  * Class ConnectionApiSageBundle 
  6.  * @package ConnectionApiSageBundle
  7.  */
  8. class ConnectionApiSageBundle extends AbstractPimcoreBundle
  9. {
  10.     /**
  11.      * @inheritdoc
  12.      */
  13.     public function getVersion()
  14.     {
  15.         return "v0.0.1";
  16.     }
  17.     /**
  18.      * @inheritdoc
  19.      */
  20.     public function getNiceName()
  21.     {
  22.         return "ConnectionApiSageBundle";
  23.     }
  24.     
  25.     /**
  26.      * @inheritdoc
  27.      */
  28.     public function getDescription()
  29.     {
  30.         return "This bundle is the connection gateway between the SAGE API and Pimcore";
  31.     }
  32.     /**
  33.      * For Assets
  34.      *
  35.      * @return array
  36.      */
  37.     public function getCssPaths()
  38.     {
  39.         return [
  40.             '/bundles/connectionapisage/css/style.css'
  41.         ];
  42.     }
  43.     /**
  44.      * For Assets
  45.      *
  46.      * @return array
  47.      */
  48.     public function getJsPaths()
  49.     {
  50.         return [
  51.             '/bundles/connectionapisage/js/pimcore/startup.js'
  52.         ];
  53.     }
  54. }