PrestaShop Developer Conference
PrestaShop Developer Conference
Paris, France - November 30, 2023
Let's talk code, commerce and open source.

Hook displayAdminGridTableAfter

Aliases:

  • displayAdminListAfter

Information

Display after Grid table:

This hook adds new blocks after Grid component table

Hook locations:

  • back office

Hook type: display

Located in:

Parameters details

    <?php
    array(
      'grid' = Grid $grid,
      'controller' => (string) $controller
      'legacy_controller' => (string) $legacyController
    );

Call of the Hook in the origin file

{{ renderhook('displayAdminGridTableAfter', {
      'grid': grid,
      'legacy_controller': app.request.attributes.get('_legacy_controller'),
      'controller': app.request.attributes.get('_controller')
    })
}}