<?php
namespace App\Bundle\ExportButtonBundle;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
class ExportButtonBundle extends AbstractPimcoreBundle
{
public function getJsPaths(): array
{
return [
'/bundles/exportbutton/js/admin.js'
];
}
public function getCssPaths(): array
{
return [];
}
}