<?php
namespace App;
use App\DependencyInjection\Compiler\AccommodationControllerPass;
use App\DependencyInjection\Compiler\RedirectControllerPass;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
use Pimcore\HttpKernel\BundleCollection\BundleCollection;
use Symfony\Component\DependencyInjection\ContainerBuilder;
class App extends AbstractPimcoreBundle
{
public function getCssPaths()
{
return [
'/static/icons/icons.css'
];
}
public function getJsPaths()
{
return [
'/bundles/app/js/startup.js',
'/bundles/app/js/plugin.js',
'/bundles/app/js/tour-import.js',
'/bundles/app/js/pricing/config/actions.js'
];
}
public function build(ContainerBuilder $container)
{
}
}