Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide download button in sonata admin

I would like to hide "Download" button on Sonata Admin from some of custom entity. How to hide/delete it?

If i override base_list.html.twig and remove the download button from table_footer, it disappears all of entity lists. Is there any way to hide it from Admin class?

like image 408
Rozig Avatar asked Sep 04 '25 17:09

Rozig


1 Answers

You can hide the "download" button by removing the corresponding route:

class YourClass extends AbstractAdmin {

  public function configureRoutes(RouteCollection $collection) {
    $collection->remove('export');
  }
}
like image 82
George Avatar answered Sep 07 '25 19:09

George