<?php
namespace Abcpremium\Magento2PimcoreBundle;
use Abcpremium\Magento2PimcoreBundle\Installer\Setup;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
class AbcpremiumMagento2PimcoreBundle extends AbstractPimcoreBundle
{
public function getJsPaths(): array
{
return [
'/bundles/abcpremiummagento2pimcore/js/pimcore/startup.js',
'/bundles/abcpremiummagento2pimcore/js/pimcore/toolbar.js',
'/bundles/abcpremiummagento2pimcore/js/pimcore/configuration.js',
'/bundles/abcpremiummagento2pimcore/js/pimcore/toolbar_button.js'
];
}
public function getInstaller()
{
return $this->container->get(Setup::class);
}
}