Search ====== The admin comes with a basic global search available in the upper navigation menu. The search iterates over admin classes and look for filter with the option ``global_search`` set to true. If you are using the ``SonataDoctrineORMBundle`` any text filter will be set to ``true`` by default. Customization ------------- The main action is using the template ``SonataAdminBundle:Core:search.html.twig``. And each search is handled by a ``block``, the template for the block is ``SonataAdminBundle:Block:block_search_result.html.twig``. The default template values can be configured in the configuration section .. configuration-block:: .. code-block:: yaml # app/config/config.yml sonata_admin: templates: # other configuration options search: SonataAdminBundle:Core:search.html.twig search_result_block: SonataAdminBundle:Block:block_search_result.html.twig You also need to configure the block in the sonata block config .. configuration-block:: .. code-block:: yaml # app/config/config.yml sonata_block: blocks: sonata.admin.block.search_result: contexts: [admin] You can also configure the block template per admin while defining the admin: .. configuration-block:: .. code-block:: xml AppBundle\Entity\Post search_result_block SonataPostBundle:Block:block_search_result.html.twig Configure the default search result action ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ In general the search result generates a link to the edit action of an item or is using the show action, if the edit route is disabled or you haven't the required permission. You can change this behaviour by overriding the ``searchResultActions`` property. The defined action list will we checked successive until a route with the required permissions exists. If no route is found, the item will be displayed as a text. .. code-block:: php