Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
5875eb52
Commit
5875eb52
authored
Apr 18, 2017
by
Nathaniel Catchpole
Browse files
Issue
#2333985
by quietone, jarsenx, ultimike, heddn: Migrate menu_default_node_menu setting
parent
8938ab29
Changes
51
Hide whitespace changes
Inline
Side-by-side
core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookTest.php
View file @
5875eb52
...
...
@@ -15,7 +15,7 @@ class MigrateBookTest extends MigrateDrupal6TestBase {
/**
* {@inheritdoc}
*/
public
static
$modules
=
[
'book'
];
public
static
$modules
=
[
'book'
,
'menu_ui'
];
/**
* {@inheritdoc}
...
...
core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentTest.php
View file @
5875eb52
...
...
@@ -17,7 +17,7 @@ class MigrateCommentTest extends MigrateDrupal6TestBase {
/**
* {@inheritdoc}
*/
public
static
$modules
=
[
'comment'
];
public
static
$modules
=
[
'comment'
,
'menu_ui'
];
/**
* {@inheritdoc}
...
...
core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentVariableEntityDisplayTest.php
View file @
5875eb52
...
...
@@ -11,6 +11,11 @@
*/
class
MigrateCommentVariableEntityDisplayTest
extends
MigrateCommentVariableDisplayBase
{
/**
* {@inheritdoc}
*/
public
static
$modules
=
[
'menu_ui'
];
/**
* {@inheritdoc}
*/
...
...
core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentVariableEntityFormDisplayTest.php
View file @
5875eb52
...
...
@@ -11,6 +11,11 @@
*/
class
MigrateCommentVariableEntityFormDisplayTest
extends
MigrateCommentVariableDisplayBase
{
/**
* {@inheritdoc}
*/
public
static
$modules
=
[
'menu_ui'
];
/**
* {@inheritdoc}
*/
...
...
core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentVariableFieldTest.php
View file @
5875eb52
...
...
@@ -15,7 +15,7 @@ class MigrateCommentVariableFieldTest extends MigrateDrupal6TestBase {
/**
* {@inheritdoc}
*/
public
static
$modules
=
[
'comment'
];
public
static
$modules
=
[
'comment'
,
'menu_ui'
];
/**
* {@inheritdoc}
...
...
core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentVariableInstanceTest.php
View file @
5875eb52
...
...
@@ -16,7 +16,7 @@ class MigrateCommentVariableInstanceTest extends MigrateDrupal6TestBase {
/**
* {@inheritdoc}
*/
public
static
$modules
=
[
'comment'
];
public
static
$modules
=
[
'comment'
,
'menu_ui'
];
/**
* {@inheritdoc}
...
...
core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityDisplayTest.php
View file @
5875eb52
...
...
@@ -12,7 +12,7 @@
*/
class
MigrateCommentEntityDisplayTest
extends
MigrateDrupal7TestBase
{
public
static
$modules
=
[
'node'
,
'comment'
,
'text'
];
public
static
$modules
=
[
'node'
,
'comment'
,
'text'
,
'menu_ui'
];
/**
* {@inheritdoc}
...
...
core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityFormDisplaySubjectTest.php
View file @
5875eb52
...
...
@@ -12,7 +12,7 @@
*/
class
MigrateCommentEntityFormDisplaySubjectTest
extends
MigrateDrupal7TestBase
{
public
static
$modules
=
[
'node'
,
'comment'
,
'text'
];
public
static
$modules
=
[
'node'
,
'comment'
,
'text'
,
'menu_ui'
];
/**
* {@inheritdoc}
...
...
core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityFormDisplayTest.php
View file @
5875eb52
...
...
@@ -12,7 +12,7 @@
*/
class
MigrateCommentEntityFormDisplayTest
extends
MigrateDrupal7TestBase
{
public
static
$modules
=
[
'node'
,
'comment'
,
'text'
];
public
static
$modules
=
[
'node'
,
'comment'
,
'text'
,
'menu_ui'
];
/**
* {@inheritdoc}
...
...
core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentFieldInstanceTest.php
View file @
5875eb52
...
...
@@ -15,7 +15,7 @@
*/
class
MigrateCommentFieldInstanceTest
extends
MigrateDrupal7TestBase
{
public
static
$modules
=
[
'node'
,
'comment'
,
'text'
];
public
static
$modules
=
[
'node'
,
'comment'
,
'text'
,
'menu_ui'
];
/**
* {@inheritdoc}
...
...
core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentFieldTest.php
View file @
5875eb52
...
...
@@ -14,7 +14,7 @@
*/
class
MigrateCommentFieldTest
extends
MigrateDrupal7TestBase
{
public
static
$modules
=
[
'node'
,
'comment'
,
'text'
];
public
static
$modules
=
[
'node'
,
'comment'
,
'text'
,
'menu_ui'
];
/**
* {@inheritdoc}
...
...
core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentTest.php
View file @
5875eb52
...
...
@@ -14,7 +14,7 @@
*/
class
MigrateCommentTest
extends
MigrateDrupal7TestBase
{
public
static
$modules
=
[
'filter'
,
'node'
,
'comment'
,
'text'
];
public
static
$modules
=
[
'filter'
,
'node'
,
'comment'
,
'text'
,
'menu_ui'
];
/**
* {@inheritdoc}
...
...
core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentTypeTest.php
View file @
5875eb52
...
...
@@ -13,7 +13,7 @@
*/
class
MigrateCommentTypeTest
extends
MigrateDrupal7TestBase
{
public
static
$modules
=
[
'node'
,
'comment'
,
'text'
];
public
static
$modules
=
[
'node'
,
'comment'
,
'text'
,
'menu_ui'
];
/**
* {@inheritdoc}
...
...
core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldFormatterSettingsTest.php
View file @
5875eb52
...
...
@@ -12,6 +12,11 @@
*/
class
MigrateFieldFormatterSettingsTest
extends
MigrateDrupal6TestBase
{
/**
* {@inheritdoc}
*/
public
static
$modules
=
[
'menu_ui'
];
/**
* {@inheritdoc}
*/
...
...
core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldInstanceTest.php
View file @
5875eb52
...
...
@@ -14,6 +14,11 @@
*/
class
MigrateFieldInstanceTest
extends
MigrateDrupal6TestBase
{
/**
* {@inheritdoc}
*/
public
static
$modules
=
[
'menu_ui'
];
/**
* Tests migration of file variables to file.settings.yml.
*/
...
...
core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldWidgetSettingsTest.php
View file @
5875eb52
...
...
@@ -12,6 +12,11 @@
*/
class
MigrateFieldWidgetSettingsTest
extends
MigrateDrupal6TestBase
{
/**
* {@inheritdoc}
*/
public
static
$modules
=
[
'menu_ui'
];
/**
* {@inheritdoc}
*/
...
...
core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceWidgetSettingsTest.php
View file @
5875eb52
...
...
@@ -29,6 +29,7 @@ class MigrateFieldInstanceWidgetSettingsTest extends MigrateDrupal7TestBase {
'taxonomy'
,
'telephone'
,
'text'
,
'menu_ui'
,
];
/**
...
...
core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadEntityDisplayTest.php
View file @
5875eb52
...
...
@@ -12,6 +12,11 @@
*/
class
MigrateUploadEntityDisplayTest
extends
MigrateDrupal6TestBase
{
/**
* {@inheritdoc}
*/
public
static
$modules
=
[
'menu_ui'
];
/**
* {@inheritdoc}
*/
...
...
core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadEntityFormDisplayTest.php
View file @
5875eb52
...
...
@@ -12,6 +12,11 @@
*/
class
MigrateUploadEntityFormDisplayTest
extends
MigrateDrupal6TestBase
{
/**
* {@inheritdoc}
*/
public
static
$modules
=
[
'menu_ui'
];
/**
* {@inheritdoc}
*/
...
...
core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadFieldTest.php
View file @
5875eb52
...
...
@@ -12,6 +12,11 @@
*/
class
MigrateUploadFieldTest
extends
MigrateDrupal6TestBase
{
/**
* {@inheritdoc}
*/
public
static
$modules
=
[
'menu_ui'
];
/**
* {@inheritdoc}
*/
...
...
Prev
1
2
3
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment