<?php
namespace Elements\Bundle\CookieBarBundle;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
class ElementsCookieBarBundle extends AbstractPimcoreBundle
{
public function getVersion()
{
$version = \PackageVersions\Versions::getVersion('elements/cookiebar-bundle');
return $version;
}
public function getDescription()
{
return 'Elements Cookie Bar Bundle';
}
public function getJsPaths()
{
return [
'/bundles/elementscookiebar/js/pimcore/startup.js'
];
}
/**
* @inheritdoc
*/
public function getInstaller()
{
return $this->container->get(Installer::class);
}
}