Drupal 8.0.0 beta 12. More info: https://www.drupal.org/node/2514176

This commit is contained in:
Pantheon Automation 2015-08-17 17:00:26 -07:00 committed by Greg Anderson
commit 9921556621
13277 changed files with 1459781 additions and 0 deletions

View file

@ -0,0 +1,6 @@
name: 'Menu link content dynamic route'
type: module
core: 8.x
hidden: true
dependencies:
- menu_link_content

View file

@ -0,0 +1,2 @@
route_callbacks:
- 'Drupal\menu_link_content_dynamic_route\Routes::dynamic'

View file

@ -0,0 +1,19 @@
<?php
/**
* @file
* Contains \Drupal\menu_link_content_dynamic_route\Routes.
*/
namespace Drupal\menu_link_content_dynamic_route;
/**
* Provides dynamic routes for test purposes.
*/
class Routes {
public function dynamic() {
return \Drupal::state()->get('menu_link_content_dynamic_route.routes', []);
}
}

View file

@ -0,0 +1,4 @@
name: 'Outbound route/path processing'
type: module
core: 8.x
hidden: true

View file

@ -0,0 +1,5 @@
outbound_processing_test.route.csrf:
path: '/outbound_processing_test/route/csrf'
requirements:
_access: 'TRUE'
_csrf_token: 'TRUE'