function menu_login_callback

Menu callback to be used as a login path.

3 string references to 'menu_login_callback'
MaintenanceModeSubscriber::onKernelRequestMaintenance in drupal/core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/EventSubscriber/MaintenanceModeSubscriber.php
Set the page online if called from a certain path.
MenuRouterTest::testMaintenanceModeLoginPaths in drupal/core/modules/system/lib/Drupal/system/Tests/Menu/MenuRouterTest.php
Make sure the maintenance mode can be bypassed using an EventSubscriber.
menu_test_menu in drupal/core/modules/system/tests/modules/menu_test/menu_test.module
Implements hook_menu().

File

drupal/core/modules/system/tests/modules/menu_test/menu_test.module, line 685
Dummy module implementing hook menu.

Code

function menu_login_callback() {
  return 'This is menu_login_callback().';
}