templates/routesjs.html.twig line 1

Open in your IDE?
  1. {##
  2.  # NOTE  : this file is intended to provide twig routes inside javascript files.
  3.  # USAGE : just add a unique key to the object 'routes' with the translated value
  4.  #  then, in your javascript file, just call routes.<my_key> to key the route.
  5.  #  routes are available in all the frontend, given that this file is included inside
  6.  #  app/Resources/frontend.html.twig
  7.  #}
  8. <script type="text/javascript">
  9.     var routes = {
  10.         'search-alert'  : '{{ path("frontend_vehicle_alert_search") }}',
  11.         'logoutUrl'     : '{{ path("fos_user_security_logout") }}',
  12.         'vehicleList'   : '{{ path("frontend_vehicle_list") }}',
  13.         'saveSearch'    : '{{ path("frontend_search_save") }}',
  14.         'storeSearch'   : '{{ path("frontend_search_by_url", {"terms" : "placeholder"}) }}',
  15.         'setSearchAsAlert' : '{{ path("frontend_search_set_as_alert") }}',
  16.         'deleteSearch'  : '{{ path("frontend_search_delete") }}',
  17.         'listSearch'    : '{{ path("frontend_search_list") }}',
  18.         'homeVehicles'  : '{{ path("frontend_home_vehicles_search") }}',
  19.         'eventPlanning' : '{{ path("frontend_sale_event_planning", {"saleId" : "placeholder"}) }}',
  20.         'vehicleListSelection'   : '{{ path("frontend_selection_list_sort") }}',
  21.         'makersAutocomplete' : '{{ path("frontend_maker_autocomplete") }}',
  22.         'addSelection'   : '{{ path("frontend_selection_add", {"id" : "placeholder"}) }}',
  23.         'purchase'       : '{{ path("frontend_user_purchase") }}',
  24.         'date'           : '{{ path("frontend_server_date") }}',
  25.         'auctionList'    : '{{ path("frontend_auction_list_active") }}',
  26.         'auctionBid'    : '{{ path("frontend_auction_bid", {"auctionId" : "auctionIdPlaceholder", "type": "typePlaceholder"}) }}',
  27.         'setPi'         : '{{ path("frontend_purchase_instruction_set", {"vehicleId" : "vehicleIdPlaceholder"}) }}',
  28.     }
  29. </script>