heartbeat.routing.yml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. # In order to to create pages it is necessary to define routes for them.
  2. # A route maps a URL path to a controller. It defines what function
  3. # or method will be called when a URL is accessed.
  4. # If the user accesses http://drupal8.dev//heartbeat/test/{arg}, the routing
  5. # system will look for a route with that path. In this case it will find a
  6. # match, and execute the _controller callback. In this case the callback is
  7. # defined as a classname
  8. # ("\Drupal\heartbeat\Controller\TestController")
  9. # and a method ("start").
  10. heartbeat.test_controller_start:
  11. path: '/heartbeat/test/{arg}'
  12. defaults:
  13. _controller: '\Drupal\heartbeat\Controller\TestController::start'
  14. _title: 'run'
  15. requirements:
  16. _permission: 'access content'
  17. heartbeat.heartbeat_save:
  18. path: '/heartbeat/heartbeats/save'
  19. defaults:
  20. _controller: '\Drupal\heartbeat\Controller\TestController::saveHeartbeats'
  21. _title: 'run'
  22. requirements:
  23. _permission: 'access content'
  24. heartbeat.heartbeat_load:
  25. path: '/heartbeat/heartbeats/load'
  26. defaults:
  27. _controller: '\Drupal\heartbeat\Controller\TestController::getHeartbeats'
  28. _title: 'run'
  29. requirements:
  30. _permission: 'access content'
  31. heartbeat.heartbeat_delete:
  32. path: '/heartbeat/heartbeats/delete'
  33. defaults:
  34. _controller: '\Drupal\heartbeat\Controller\TestController::deleteHeartbeats'
  35. _title: 'run'
  36. requirements:
  37. _permission: 'access content'
  38. #heartbeat.stream_test_controller_stream:
  39. # path: '/nodeactivity'
  40. # defaults:
  41. # _controller: '\Drupal\heartbeat\Controller\StreamTestController::stream'
  42. # _title: 'stream'
  43. # requirements:
  44. # _permission: 'access content'
  45. #
  46. #heartbeat.stream_test_controller_friendstream:
  47. # path: '/friendactivity'
  48. # defaults:
  49. # _controller: '\Drupal\heartbeat\Controller\StreamTestController::friendstream'
  50. # _title: 'Friendship'
  51. # requirements:
  52. # _permission: 'access content'
  53. #
  54. #heartbeat.stream_test_controller_tweetstream:
  55. # path: '/tweetactivity'
  56. # defaults:
  57. # _controller: '\Drupal\heartbeat\Controller\StreamTestController::tweetstream'
  58. # _title: 'Tweetship'
  59. # requirements:
  60. # _permission: 'access content'
  61. #
  62. #heartbeat.stream_test_controller_superherostream:
  63. # path: '/superheroactivity'
  64. # defaults:
  65. # _controller: '\Drupal\heartbeat\Controller\StreamTestController::superherostream'
  66. # _title: 'Superhero Worship'
  67. # requirements:
  68. # _permission: 'access content'
  69. route_callbacks:
  70. - '\Drupal\heartbeat\Routing\HeartbeatRouteController::getRoutes'
  71. #heartbeat.heartbeat_stream.routes:
  72. # path: '/heartbeat/hello'
  73. # defaults:
  74. # _controller: '\Drupal\heartbeat\Controller\HeartbeatRouteController::getRoutes'
  75. # _title: 'getRoutes'
  76. # requirements:
  77. # _permission: 'access content'
  78. heartbeat.heartbeat_feed_form:
  79. path: '/heartbeat/form/heartbeat_feed'
  80. defaults:
  81. _form: '\Drupal\heartbeat\Form\HeartbeatFeedForm'
  82. _title: 'HeartbeatFeedForm'
  83. requirements:
  84. _access: 'TRUE'
  85. heartbeat.render_feed:
  86. path: '/heartbeat/render_feed/{arg}'
  87. defaults:
  88. _controller: '\Drupal\heartbeat\Controller\HeartbeatController::renderFeed'
  89. _title: 'Render Feed'
  90. requirements:
  91. _permission: 'access content'
  92. heartbeat.update_feed:
  93. path: '/heartbeat/update_feed/{arg}'
  94. defaults:
  95. _controller: '\Drupal\heartbeat\Controller\HeartbeatController::updateFeed'
  96. _title: 'Update Feed'
  97. requirements:
  98. _permission: 'access content'
  99. heartbeat.heartbeat_update_feed_form:
  100. path: '/heartbeat/form/heartbeat_update_feed'
  101. defaults:
  102. _form: '\Drupal\heartbeat\Form\HeartbeatUpdateFeedForm'
  103. _title: 'HeartbeatUpdateFeedForm'
  104. requirements:
  105. _access: 'TRUE'
  106. heartbeat.heartbeat_filter_feed:
  107. path: '/heartbeat/filter-feed/{tid}'
  108. defaults:
  109. _controller: '\Drupal\heartbeat\Controller\HeartbeatController::filterFeed'
  110. _title: 'Heartbeat Filter Feed'
  111. requirements:
  112. _access: 'TRUE'
  113. heartbeat.heartbeat_comment_update:
  114. path: '/heartbeat/commentupdate/{entity_id}'
  115. defaults:
  116. _controller: '\Drupal\heartbeat\Controller\HeartbeatController::commentConfigUpdate'
  117. _title: 'Heartbeat Comment Config Update'
  118. requirements:
  119. _access: 'TRUE'