<?php
namespace Elements\Bundle\StyleLabBundle;
use Elements\Bundle\StyleLabBundle\Tools\Installer;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
use Composer\InstalledVersions;
class ElementsStyleLabBundle extends AbstractPimcoreBundle
{
public function getVersion()
{
$version = InstalledVersions::getVersion('elements/style-lab-bundle');
return $version;
}
public function getJsPaths(){
return [
'/bundles/elementsstylelab/static/js/startup.js'
];
}
public function getCssPaths()
{
return [
'/bundles/elementsstylelab/static/css/pimcore.css'
];
}
public function getInstaller()
{
return $this->container->get(Installer::class);
}
}