<?php
namespace Jabber\WebthinkingBundle;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
class JabberWebthinkingBundle extends AbstractPimcoreBundle
{
public function getInstaller()
{
return $this->container->get(Installer::class);
}
public function getJsPaths()
{
return [
'/bundles/jabberwebthinking/js/pimcore/pills.js',
'/bundles/jabberwebthinking/js/pimcore/productProcessing.js',
'/bundles/jabberwebthinking/js/pimcore/copyCategories.js',
'/bundles/jabberwebthinking/js/pimcore/menu.js',
'/bundles/jabberwebthinking/js/pimcore/sendDataActions.js',
'/bundles/jabberwebthinking/js/pimcore/addNavigationItem.js',
];
}
}