Skip to content
Snippets Groups Projects
Verified Commit 8088712c authored by Lauri Timmanee's avatar Lauri Timmanee
Browse files

Issue #3414707 by quietone, arunkumark: Fix change record URL in deprecation message for #3112298

parent 16a22b98
Branches
Tags
27 merge requests!12227Issue #3181946 by jonmcl, mglaman,!8528Issue #3456871 by Tim Bozeman: Support NULL services,!3878Removed unused condition head title for views,!38582585169-10.1.x,!3818Issue #2140179: $entity->original gets stale between updates,!3742Issue #3328429: Create item list field formatter for displaying ordered and unordered lists,!3731Claro: role=button on status report items,!3668Resolve #3347842 "Deprecate the trusted",!3651Issue #3347736: Create new SDC component for Olivero (header-search),!3531Issue #3336994: StringFormatter always displays links to entity even if the user in context does not have access,!3478Issue #3337882: Deleted menus are not removed from content type config,!3355Issue #3209129: Scrolling problems when adding a block via layout builder,!3226Issue #2987537: Custom menu link entity type should not declare "bundle" entity key,!3154Fixes #2987987 - CSRF token validation broken on routes with optional parameters.,!3133core/modules/system/css/components/hidden.module.css,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!2812Issue #3312049: [Followup] Fix Drupal.Commenting.FunctionComment.MissingReturnType returns for NULL,!2378Issue #2875033: Optimize joins and table selection in SQL entity query implementation,!2334Issue #3228209: Add hasRole() method to AccountInterface,!2062Issue #3246454: Add weekly granularity to views date sort,!1105Issue #3025039: New non translatable field on translatable content throws error,!1073issue #3191727: Focus states on mobile second level navigation items fixed,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!877Issue #2708101: Default value for link text is not saved,!579Issue #2230909: Simple decimals fail to pass validation,!560Move callback classRemove outside of the loop,!555Issue #3202493
Pipeline #81289 passed with warnings
Pipeline: drupal

#81317

    Pipeline: drupal

    #81312

      Pipeline: drupal

      #81307

        +1
        ......@@ -153,7 +153,7 @@ public function __construct(
        $this->redirectDestination = \Drupal::service('redirect.destination');
        }
        if ($this->time === NULL) {
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3301971', E_USER_DEPRECATED);
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3112298', E_USER_DEPRECATED);
        $this->time = \Drupal::service('datetime.time');
        }
        }
        ......
        ......@@ -48,7 +48,7 @@ public function __construct(ContentTranslationManagerInterface $manager, EntityF
        $this->manager = $manager;
        $this->entityFieldManager = $entity_field_manager;
        if ($this->time === NULL) {
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3301971', E_USER_DEPRECATED);
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3112298', E_USER_DEPRECATED);
        $this->time = \Drupal::service('datetime.time');
        }
        }
        ......
        ......@@ -56,7 +56,7 @@ public function __construct(ModuleHandlerInterface $module_handler, StateInterfa
        $this->moduleHandler = $module_handler;
        $this->state = $state;
        if ($this->time === NULL) {
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3301971', E_USER_DEPRECATED);
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3112298', E_USER_DEPRECATED);
        $this->time = \Drupal::service('datetime.time');
        }
        }
        ......
        ......@@ -93,7 +93,7 @@ public function __construct(
        $this->migrationState = $migrationState;
        $this->moduleHandler = $module_handler;
        if ($this->time === NULL) {
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3301971', E_USER_DEPRECATED);
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3112298', E_USER_DEPRECATED);
        $this->time = \Drupal::service('datetime.time');
        }
        }
        ......
        ......@@ -41,7 +41,7 @@ public function __construct(EntityTypeInterface $entity_type, EntityStorageInter
        $this->dateFormatter = $date_formatter;
        if ($this->time === NULL) {
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3301971', E_USER_DEPRECATED);
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3112298', E_USER_DEPRECATED);
        $this->time = \Drupal::service('datetime.time');
        }
        }
        ......
        ......@@ -32,7 +32,7 @@ class DateFormatDeleteForm extends EntityDeleteForm {
        public function __construct(DateFormatterInterface $date_formatter, protected ?TimeInterface $time = NULL) {
        $this->dateFormatter = $date_formatter;
        if ($this->time === NULL) {
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3301971', E_USER_DEPRECATED);
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3112298', E_USER_DEPRECATED);
        $this->time = \Drupal::service('datetime.time');
        }
        }
        ......
        ......@@ -28,7 +28,7 @@ class DateFormatEditForm extends DateFormatFormBase {
        public function __construct(DateFormatterInterface $date_formatter, ConfigEntityStorageInterface $date_format_storage, protected ?TimeInterface $time = NULL) {
        parent::__construct($date_formatter, $date_format_storage);
        if ($this->time === NULL) {
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3301971', E_USER_DEPRECATED);
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3112298', E_USER_DEPRECATED);
        $this->time = \Drupal::service('datetime.time');
        }
        }
        ......
        ......@@ -29,7 +29,7 @@ public function __construct(
        protected ?TimeInterface $time = NULL
        ) {
        if ($this->time === NULL) {
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3301971', E_USER_DEPRECATED);
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3112298', E_USER_DEPRECATED);
        $this->time = \Drupal::service('datetime.time');
        }
        }
        ......
        ......@@ -89,7 +89,7 @@ public function __construct(
        $this->logger = $logger;
        $this->flood = $flood;
        if ($this->time === NULL) {
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3301971', E_USER_DEPRECATED);
        @trigger_error('Calling ' . __METHOD__ . ' without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3112298', E_USER_DEPRECATED);
        $this->time = \Drupal::service('datetime.time');
        }
        }
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Please register or to comment