<?php
namespace Vdevs\Bundle\WpoTools;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
use Pimcore\Extension\Bundle\Installer;
class WpoToolsBundle extends AbstractPimcoreBundle
{
public function getCssPaths(): array
{
return [
'/bundles/wpotools/css/pimcore/startup.css'
];
}
public function getJsPaths(): array
{
return [
'/bundles/wpotools/js/pimcore/startup.js'
];
}
public function getInstaller(): ?Installer\InstallerInterface
{
return $this->container->get(\Vdevs\Bundle\WpoTools\Installer\Installer::class);
}
public function getVersion(): string
{
return \Composer\InstalledVersions::getVersion('vdevs/wpo-tools-bundle');
}
}