Commit 97aada74 authored by Guilherme  Rabelo's avatar Guilherme Rabelo Committed by Sascha Grossenbacher
Browse files

Issue #3272521 by Guilherme Rabelo, tmaiochi: Drupal 10 compatibility

parent 9e2c4b6c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
name: Flag
description: Create customized flags that users can set on entities.
core_version_requirement: ^9.1
core_version_requirement: ^9.1 || ^10
type: module
package: Flags
configure: entity.flag.collection
+1 −1
Original line number Diff line number Diff line
name: Flag Bookmark
description: Provides an example bookmark flag and supporting views.
core_version_requirement: ^9.1
core_version_requirement: ^9.1 || ^10
type: module
dependencies:
  - flag:flag
+2 −2
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ class FlagBookmarkUITest extends WebDriverTestBase {
   *
   * @var array
   */
  public static $modules = [
  protected static $modules = [
    'views',
    'flag',
    'flag_bookmark',
@@ -30,7 +30,7 @@ class FlagBookmarkUITest extends WebDriverTestBase {
  /**
   * {@inheritdoc}
   */
  public function setUp() {
  public function setUp(): void {
    parent::setUp();
    $this->drupalCreateContentType(['type' => 'article', 'name' => 'Article']);
  }
+0 −1
Original line number Diff line number Diff line
@@ -17,7 +17,6 @@ class FlagBookmarkInstallUninstallTest extends FlagKernelTestBase {
    // Provides configuraiton depended on by the view.
    $this->installConfig(['system']);
    // Tables necessary for uninstall.
    $this->installSchema('system', ['key_value_expire']);
    $this->installSchema('user', ['users_data']);

    // Install the Flag bookmark module.
+1 −1
Original line number Diff line number Diff line
name: Flag Count
description: Provides an example on how to display flag counts
core_version_requirement: ^9.1
core_version_requirement: ^9.1 || ^10
type: module
dependencies:
  - flag:flag
Loading