view core/modules/system/tests/modules/session_test/session_test.routing.yml @ 9:1fc0ff908d1f

Add another data file
author Chris Cannam
date Mon, 05 Feb 2018 12:34:32 +0000
parents 4c8ae668cc8c
children
line wrap: on
line source
session_test.get:
  path: '/session-test/get'
  defaults:
    _title: 'Session value'
    _controller: '\Drupal\session_test\Controller\SessionTestController::get'
  options:
    no_cache: TRUE
  requirements:
    _access: 'TRUE'
session_test.get_from_session_object:
  path: '/session-test/get-from-session-object'
  defaults:
    _title: 'Session value'
    _controller: '\Drupal\session_test\Controller\SessionTestController::getFromSessionObject'
  options:
    no_cache: TRUE
  requirements:
    _access: 'TRUE'
session_test.id:
  path: '/session-test/id'
  defaults:
    _title: 'Session ID'
    _controller: '\Drupal\session_test\Controller\SessionTestController::getId'
  options:
    no_cache: TRUE
  requirements:
    _access: 'TRUE'

session_test.id_from_cookie:
  path: '/session-test/id-from-cookie'
  defaults:
    _title: 'Session ID from cookie'
    _controller: '\Drupal\session_test\Controller\SessionTestController::getIdFromCookie'
  requirements:
    _access: 'TRUE'

session_test.set:
  path: '/session-test/set/{test_value}'
  defaults:
    _title: 'Set session value'
    _controller: '\Drupal\session_test\Controller\SessionTestController::set'
  options:
    no_cache: TRUE
    converters:
      test_value: '\s+'
  requirements:
    _access: 'TRUE'

session_test.no_set:
  path: '/session-test/no-set/{test_value}'
  defaults:
    _title: 'Set session value but do not save session'
    _controller: '\Drupal\session_test\Controller\SessionTestController::noSet'
  options:
    no_cache: TRUE
    converters:
      test_value: '\s+'
  requirements:
    _access: 'TRUE'

session_test.set_message:
  path: '/session-test/set-message'
  defaults:
    _title: 'Set message'
    _controller: '\Drupal\session_test\Controller\SessionTestController::setMessage'
  requirements:
    _access: 'TRUE'

session_test.set_message_but_dont_save:
  path: '/session-test/set-message-but-dont-save'
  defaults:
    _title: 'Set message but do not save session'
    _controller: '\Drupal\session_test\Controller\SessionTestController::setMessageButDontSave'
  requirements:
    _access: 'TRUE'

session_test.is_logged_in:
  path: '/session-test/is-logged-in'
  defaults:
    _title: 'Check if user is logged in'
    _controller: '\Drupal\session_test\Controller\SessionTestController::isLoggedIn'
  requirements:
    _user_is_logged_in: 'TRUE'

session_test.form:
  path: '/session-test/form'
  defaults:
    _form: '\Drupal\session_test\Form\SessionTestForm'
    _title: 'Test form'
  requirements:
    _access: 'TRUE'

session_test.trace_handler:
  path: '/session-test/trace-handler'
  defaults:
    _title: 'Returns the trace recorded by test proxy session handlers as JSON'
    _controller: '\Drupal\session_test\Controller\SessionTestController::traceHandler'
  requirements:
    _access: 'TRUE'

session_test.get_session_basic_auth:
  path: '/session-test/get-session'
  defaults:
    _title: 'Get session information using basic authentication'
    _controller: '\Drupal\session_test\Controller\SessionTestController::getSession'
  options:
    no_cache: TRUE
    _auth: ['basic_auth']
  requirements:
    _permission: 'administer site configuration'

session_test.get_session_no_auth:
  path: '/session-test/get-session-no-auth'
  defaults:
    _title: 'Get session information'
    _controller: '\Drupal\session_test\Controller\SessionTestController::getSession'
  options:
    no_cache: TRUE
  requirements:
    _access: 'TRUE'

session_test.set_session:
  path: '/session-test/set-session/{test_value}'
  defaults:
    _title: 'Set a session value using basic authentication'
    _controller: '\Drupal\session_test\Controller\SessionTestController::setSession'
  options:
    no_cache: TRUE
    _auth: ['basic_auth']
    converters:
      test_value: '\s+'
  requirements:
    _permission: 'administer site configuration'