profiler.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <routes xmlns="http://symfony.com/schema/routing"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://symfony.com/schema/routing https://symfony.com/schema/routing/routing-1.0.xsd">
  5. <route id="_profiler_home" path="/">
  6. <default key="_controller">web_profiler.controller.profiler::homeAction</default>
  7. </route>
  8. <route id="_profiler_search" path="/search">
  9. <default key="_controller">web_profiler.controller.profiler::searchAction</default>
  10. </route>
  11. <route id="_profiler_search_bar" path="/search_bar">
  12. <default key="_controller">web_profiler.controller.profiler::searchBarAction</default>
  13. </route>
  14. <route id="_profiler_phpinfo" path="/phpinfo">
  15. <default key="_controller">web_profiler.controller.profiler::phpinfoAction</default>
  16. </route>
  17. <route id="_profiler_search_results" path="/{token}/search/results">
  18. <default key="_controller">web_profiler.controller.profiler::searchResultsAction</default>
  19. </route>
  20. <route id="_profiler_open_file" path="/open">
  21. <default key="_controller">web_profiler.controller.profiler::openAction</default>
  22. </route>
  23. <route id="_profiler" path="/{token}">
  24. <default key="_controller">web_profiler.controller.profiler::panelAction</default>
  25. </route>
  26. <route id="_profiler_router" path="/{token}/router">
  27. <default key="_controller">web_profiler.controller.router::panelAction</default>
  28. </route>
  29. <route id="_profiler_exception" path="/{token}/exception">
  30. <default key="_controller">web_profiler.controller.exception_panel::body</default>
  31. </route>
  32. <route id="_profiler_exception_css" path="/{token}/exception.css">
  33. <default key="_controller">web_profiler.controller.exception_panel::stylesheet</default>
  34. </route>
  35. </routes>