Commit 347e68dc authored by catch's avatar catch
Browse files

fix: #3517719 Deprecate the Field Layout module

By: @quietone
(cherry picked from commit d0eed95e)
parent 3866e6c3
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2,7 +2,8 @@ name: 'Field Layout'
type: module
description: 'Allows users to configure the display and form display by arranging fields in several columns.'
package: Core (Experimental)
lifecycle: experimental
lifecycle: deprecated
lifecycle_link: https://www.drupal.org/node/3223395#s-field-layout
version: VERSION
dependencies:
  - drupal:layout_discovery
+2 −0
Original line number Diff line number Diff line
@@ -6,12 +6,14 @@

use Drupal\Tests\BrowserTestBase;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\IgnoreDeprecations;
use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses;

/**
 * Tests using field layout for entity displays.
 */
#[Group('field_layout')]
#[IgnoreDeprecations]
#[RunTestsInSeparateProcesses]
class FieldLayoutTest extends BrowserTestBase {

+2 −0
Original line number Diff line number Diff line
@@ -6,11 +6,13 @@

use Drupal\Tests\system\Functional\Module\GenericModuleTestBase;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\IgnoreDeprecations;
use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses;

/**
 * Generic module test for field_layout.
 */
#[Group('field_layout')]
#[IgnoreDeprecations]
#[RunTestsInSeparateProcesses]
class GenericTest extends GenericModuleTestBase {}
+2 −0
Original line number Diff line number Diff line
@@ -7,12 +7,14 @@
use Drupal\entity_test\Entity\EntityTest;
use Drupal\FunctionalJavascriptTests\WebDriverTestBase;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\IgnoreDeprecations;
use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses;

/**
 * Tests using field layout for entity displays.
 */
#[Group('field_layout')]
#[IgnoreDeprecations]
#[RunTestsInSeparateProcesses]
class FieldLayoutTest extends WebDriverTestBase {

+2 −0
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@
use Drupal\KernelTests\KernelTestBase;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\IgnoreDeprecations;
use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses;

/**
@@ -16,6 +17,7 @@
 */
#[CoversClass(FieldLayoutEntityDisplayTrait::class)]
#[Group('field_layout')]
#[IgnoreDeprecations]
#[RunTestsInSeparateProcesses]
class FieldLayoutEntityDisplayTest extends KernelTestBase {

Loading