vendor/elements/json-ld-reloaded-bundle/src/ElementsJsonLdReloadedBundle.php line 7

Open in your IDE?
  1. <?php
  2. namespace Elements\Bundle\JsonLdReloadedBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. class ElementsJsonLdReloadedBundle extends AbstractPimcoreBundle
  5. {
  6.     public function getInstaller()
  7.     {
  8.         return $this->container->get(Installer::class);
  9.     }
  10.     public function getVersion()
  11.     {
  12.         $version \PackageVersions\Versions::getVersion('elements/json-ld-reloaded-bundle');
  13.         return $version;
  14.     }
  15.     public function getDescription()
  16.     {
  17.         return 'Provides a Backend Tool to create JsonLd Templates For Dokuments, Assets and DataObjects';
  18.     }
  19.     public function getJsPaths()
  20.     {
  21.         return [
  22.             '/bundles/elementsjsonldreloaded/js/pimcore/startup.js'
  23.         ];
  24.     }
  25.     public function getCssPaths()
  26.     {
  27.         return [
  28.             '/bundles/elementsjsonldreloaded/pimcore.css'
  29.         ];
  30.     }
  31. }