<?php
namespace Asn\CustomBackOfficeBundle;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
class AsnCustomBackOfficeBundle extends AbstractPimcoreBundle
{
public function getJsPaths()
{
return [
'/bundles/asncustombackoffice/js/pimcore/startup.js',
'/bundles/asncustombackoffice/js/pimcore/menu-eclate.js',
'/bundles/asncustombackoffice/js/pimcore/edit-eclate.js'
];
}
public function getCssPaths()
{
return [
'/bundles/asncustombackoffice/css/pimcore/custom-style.css',
'/bundles/asncustombackoffice/css/pimcore/custom-style-objet-eclate.css'
];
}
}