diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc index 69544ba..80035a6 100644 --- a/core/includes/bootstrap.inc +++ b/core/includes/bootstrap.inc @@ -95,7 +95,7 @@ /** * Role ID for anonymous users; should match what's in the "role" table. * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use Drupal\Core\Session\AccountInterface::ANONYMOUS_ROLE or * \Drupal\user\RoleInterface::ANONYMOUS_ID instead. * @@ -106,7 +106,7 @@ /** * Role ID for authenticated users; should match what's in the "role" table. * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use Drupal\Core\Session\AccountInterface::AUTHENTICATED_ROLE or * \Drupal\user\RoleInterface::AUTHENTICATED_ID instead. * @@ -129,7 +129,7 @@ * @see http://php.net/manual/reserved.variables.server.php * @see http://php.net/manual/function.time.php * - * @deprecated in Drupal 8.3.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal::time()->getRequestTime(); * * @see https://www.drupal.org/node/2785211 @@ -346,7 +346,7 @@ function t($string, array $args = [], array $options = []) { * @see t() * @ingroup sanitization * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Component\Render\FormattableMarkup. * * @see https://www.drupal.org/node/2302363 @@ -381,7 +381,7 @@ function format_string($string, array $args) { * * @see \Drupal\Component\Utility\Unicode::validateUtf8() * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Component\Utility\Unicode::validateUtf8(). * * @see https://www.drupal.org/node/1992584 @@ -482,7 +482,7 @@ function watchdog_exception($type, Exception $exception, $message = NULL, $varia * @see status-messages.html.twig * @see https://www.drupal.org/node/2774931 * - * @deprecated in Drupal 8.5.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Messenger\MessengerInterface::addMessage() instead. */ function drupal_set_message($message = NULL, $type = 'status', $repeat = FALSE) { @@ -520,7 +520,7 @@ function drupal_set_message($message = NULL, $type = 'status', $repeat = FALSE) * @see status-messages.html.twig * @see https://www.drupal.org/node/2774931 * - * @deprecated in Drupal 8.5.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Messenger\MessengerInterface::all() or * \Drupal\Core\Messenger\MessengerInterface::messagesByType() instead. */ @@ -765,7 +765,7 @@ function drupal_installation_attempted() { * currently active. This is the case for example during the first steps of * the installer or during unit tests. * - * @deprecated in Drupal 8.3.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use the install_profile container parameter or \Drupal::installProfile() * instead. If you are accessing the value before it is written to * configuration during the installer use the $install_state global. If you @@ -807,7 +807,7 @@ function drupal_get_profile() { * @param string $path * The relative path to the Drupal component in the filesystem. * - * @deprecated in Drupal 8.8.0, will be removed before Drupal 9.0.0. Use the + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use the * class loader as injected service instance to register the namespace: * @code * $this->classLoader->addPsr4('Drupal\\' . $name . '\\', \Drupal::root() . '/' . $path . '/src'); @@ -985,7 +985,7 @@ function drupal_static_reset($name = NULL) { /** * Formats text for emphasized display in a placeholder inside a sentence. * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\Component\Render\FormattableMarkup or Twig's "placeholder" filter * instead. Note this method should not be used to simply emphasize a string * and therefore has few valid use-cases. Note also, that this method does not diff --git a/core/includes/common.inc b/core/includes/common.inc index c3f4190..8ee4307 100644 --- a/core/includes/common.inc +++ b/core/includes/common.inc @@ -127,7 +127,7 @@ /** * The delimiter used to split plural strings. * - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use Drupal\Component\Gettext\PoItem::DELIMITER instead. */ const LOCALE_PLURAL_DELIMITER = PoItem::DELIMITER; @@ -150,7 +150,7 @@ * * @ingroup form_api * - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use the redirect.destination service. * * @see \Drupal\Core\EventSubscriber\RedirectResponseSubscriber::checkRedirectUrl() @@ -175,7 +175,7 @@ function drupal_get_destination() { * @return bool * TRUE if the address is in a valid format. * - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal::service('email.validator')->isValid(). * * @see https://www.drupal.org/node/2912661 @@ -212,7 +212,7 @@ function valid_email_address($mail) { * Drupal\Core\Template\Attribute, call * \Drupal\Component\Utility\UrlHelper::stripDangerousProtocols() instead. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use UrlHelper::stripDangerousProtocols() or UrlHelper::filterBadProtocol() * instead. UrlHelper::stripDangerousProtocols() can be used in conjunction * with \Drupal\Component\Render\FormattableMarkup and an @variable @@ -324,7 +324,7 @@ function format_size($size, $langcode = NULL) { * @return * A translated date string in the requested format. * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal::service('date.formatter')->format(). * * @see \Drupal\Core\Datetime\DateFormatter::format() @@ -344,7 +344,7 @@ function format_date($timestamp, $type = 'medium', $format = '', $timezone = NUL * @return string * An ISO8601 formatted date. * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * date('c', $date) instead. * * @see https://www.drupal.org/node/2999991 @@ -370,7 +370,7 @@ function date_iso8601($date) { * A ; separated string ready for insertion in a HTTP header. No escaping is * performed for HTML entities, so this string is not safe to be printed. * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Render\HtmlResponseAttachmentsProcessor::formatHttpHeaderAttributes() * instead. * @@ -409,7 +409,7 @@ function drupal_http_header_attributes(array $attributes = []) { * * @ingroup php_wrappers * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Environment::setTimeLimit() instead. * * @see https://www.drupal.org/node/3000058 @@ -436,7 +436,7 @@ function base_path() { /** * Deletes old cached CSS files. * - * @deprecated in Drupal 8.x, will be removed before Drupal 9.0. + * @deprecated in drupal:8.0 and is removed from drupal:9.0. * Use \Drupal\Core\Asset\AssetCollectionOptimizerInterface::deleteAll(). * * @see https://www.drupal.org/node/2317841 @@ -755,7 +755,7 @@ function drupal_attach_tabledrag(&$element, array $options) { /** * Deletes old cached JavaScript files and variables. * - * @deprecated in Drupal 8.x, will be removed before Drupal 9.0. + * @deprecated in drupal:8.0 and is removed from drupal:9.0. * Use \Drupal\Core\Asset\AssetCollectionOptimizerInterface::deleteAll(). * * @see https://www.drupal.org/node/2317841 @@ -767,7 +767,7 @@ function drupal_clear_js_cache() { /** * Pre-render callback: Renders a link into #markup. * - * @deprecated in Drupal 8.x, will be removed before Drupal 9.0. + * @deprecated in drupal:8.0 and is removed from drupal:9.0. * Use \Drupal\Core\Render\Element\Link::preRenderLink(). */ function drupal_pre_render_link($element) { @@ -872,7 +872,7 @@ function drupal_pre_render_links($element) { /** * Renders final HTML given a structured array tree. * - * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0. Use the + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use the * 'renderer' service instead. * * @see \Drupal\Core\Render\RendererInterface::renderRoot() @@ -885,7 +885,7 @@ function drupal_render_root(&$elements) { /** * Renders HTML given a structured array tree. * - * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0. Use the + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use the * 'renderer' service instead. * * @see \Drupal\Core\Render\RendererInterface::render() @@ -1025,7 +1025,7 @@ function show(&$element) { * @param $type * An element type as defined by an element plugin. * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal::service('element_info')->getInfo() instead. * * @see https://www.drupal.org/node/2235461 @@ -1045,7 +1045,7 @@ function element_info($type) { * (Optional) The value to return if the element type does not specify a * value for the property. Defaults to NULL. * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal::service('element_info')->getInfoProperty() instead. * * @see https://www.drupal.org/node/2235461 @@ -1226,7 +1226,7 @@ function debug($data, $label = NULL, $print_r = TRUE) { * NULL if compatible, otherwise the original dependency version string that * caused the incompatibility. * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Extension\Dependency::isCompatible() instead. * * @see https://www.drupal.org/node/2756875 @@ -1249,7 +1249,7 @@ function drupal_check_incompatibility($v, $current_version) { * A space-separated string of extensions suitable for use by the file * validation system. * - * @deprecated in Drupal 8.8.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Archiver\ArchiverManager::getExtensions() instead. * * @see https://www.drupal.org/node/2999951 @@ -1274,7 +1274,7 @@ function archiver_get_extensions() { * @throws \Exception * If a remote stream wrapper path was passed. * - * @deprecated in Drupal 8.8.0 and will be removed before Drupal 9.0.0. Instead, + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Instead, * get plugin.manager.archiver service from container and call getInstance() * method on it. For example $archiver->getInstance(['filepath' => $file]); * diff --git a/core/includes/database.inc b/core/includes/database.inc index 9f0f993..32273d3 100644 --- a/core/includes/database.inc +++ b/core/includes/database.inc @@ -44,7 +44,7 @@ * @return \Drupal\Core\Database\StatementInterface * A prepared statement object, already executed. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container * and call query() on it. For example, * $injected_database->query($query, $args, $options); @@ -80,7 +80,7 @@ function db_query($query, array $args = [], array $options = []) { * @return \Drupal\Core\Database\StatementInterface * A prepared statement object, already executed. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container * and call queryRange() on it. For example, * $injected_database->queryRange($query, $from, $count, $args, $options); @@ -114,7 +114,7 @@ function db_query_range($query, $from, $count, array $args = [], array $options * @return string * The name of the temporary table. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container * and call queryTemporary() on it. For example, * $injected_database->queryTemporary($query, $args, $options); @@ -139,7 +139,7 @@ function db_query_temporary($query, array $args = [], array $options = []) { * @return \Drupal\Core\Database\Query\Insert * A new Insert object for this connection. * - * @deprecated as of Drupal 8.0.x, will be removed in Drupal 9.0.0. Instead, get + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, get * a database connection injected into your service from the container and * call insert() on it. For example, * $injected_database->insert($table, $options); @@ -164,7 +164,7 @@ function db_insert($table, array $options = []) { * @return \Drupal\Core\Database\Query\Merge * A new Merge object for this connection. * - * @deprecated as of Drupal 8.0.x, will be removed in Drupal 9.0.0. Instead, get + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, get * a database connection injected into your service from the container and * call merge() on it. For example, * $injected_database->merge($table, $options); @@ -189,7 +189,7 @@ function db_merge($table, array $options = []) { * @return \Drupal\Core\Database\Query\Update * A new Update object for this connection. * - * @deprecated as of Drupal 8.0.x, will be removed in Drupal 9.0.0. Instead, get + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, get * a database connection injected into your service from the container and * call update() on it. For example, * $injected_database->update($table, $options); @@ -214,7 +214,7 @@ function db_update($table, array $options = []) { * @return \Drupal\Core\Database\Query\Delete * A new Delete object for this connection. * - * @deprecated as of Drupal 8.0.x, will be removed in Drupal 9.0.0. Instead, get + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, get * a database connection injected into your service from the container and * call delete() on it. For example, * $injected_database->delete($table, $options); @@ -239,7 +239,7 @@ function db_delete($table, array $options = []) { * @return \Drupal\Core\Database\Query\Truncate * A new Truncate object for this connection. * - * @deprecated as of Drupal 8.0.x, will be removed in Drupal 9.0.0. Instead, get + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, get * a database connection injected into your service from the container and * call truncate() on it. For example, * $injected_database->truncate($table, $options); @@ -268,7 +268,7 @@ function db_truncate($table, array $options = []) { * @return \Drupal\Core\Database\Query\Select * A new Select object for this connection. * - * @deprecated as of Drupal 8.0.x, will be removed in Drupal 9.0.0. Instead, get + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, get * a database connection injected into your service from the container and * call select() on it. For example, * $injected_database->select($table, $alias, $options); @@ -294,7 +294,7 @@ function db_select($table, $alias = NULL, array $options = []) { * @return \Drupal\Core\Database\Transaction * A new Transaction object for this connection. * - * @deprecated in drupal:8.0.x and will be removed from drupal:9.0.0. Instead, get + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, get * a database connection injected into your service from the container and * call startTransaction() on it. For example, * $injected_database->startTransaction($name); @@ -317,7 +317,7 @@ function db_transaction($name = NULL, array $options = []) { * @return string|null * The key of the formerly active database. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Database\Database::setActiveConnection(). * * @see https://www.drupal.org/node/2993033 @@ -338,7 +338,7 @@ function db_set_active($key = 'default') { * @return string * The escaped table name as a string. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container * and call escapeTable() on it. For example, * $injected_database->escapeTable($table); @@ -362,7 +362,7 @@ function db_escape_table($table) { * @return string * The escaped field name as a string. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container * and call escapeField() on it. For example, * $injected_database->escapeField($field); @@ -405,7 +405,7 @@ function db_escape_field($field) { * @return string * The escaped string. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container * and call escapeLike() on it. For example, * $injected_database->escapeLike($string); @@ -424,7 +424,7 @@ function db_like($string) { * @return string * The name of the currently active database driver. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container * and call driver() on it. For example, $injected_database->driver($string); * @@ -443,7 +443,7 @@ function db_driver() { * An array of options to control which connection is closed. Only the target * key has any meaning in this case. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Database\Database::closeConnection($target). * * @see https://www.drupal.org/node/2993033 @@ -472,7 +472,7 @@ function db_close(array $options = []) { * * @internal * - * @deprecated in drupal:8.8.0 and will be removed from drupal:9.0.0. There is + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. There is * no replacement, this function should not be used. It was introduced in * Drupal 8.8.0 only as a byproduct of the deprecation of the db_* procedural * functions. @@ -504,7 +504,7 @@ function _db_get_target(array &$options, $allow_replica = TRUE) { * @return int * An integer number larger than any number returned before for this sequence. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container * and call nextId() on it. * For example, $injected_database->nextId($existing_id); @@ -523,7 +523,7 @@ function db_next_id($existing_id = 0) { * @return \Drupal\Core\Database\Query\Condition * A new Condition object, set to "OR" all conditions together. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Create + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Create * a \Drupal\Core\Database\Query\Condition object, specifying an OR * conjunction: new Condition('OR'); * @@ -541,7 +541,7 @@ function db_or() { * @return \Drupal\Core\Database\Query\Condition * A new Condition object, set to "AND" all conditions together. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Create + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Create * a \Drupal\Core\Database\Query\Condition object, specifying an AND * conjunction: new Condition('AND'); * @@ -559,7 +559,7 @@ function db_and() { * @return \Drupal\Core\Database\Query\Condition * A new Condition object, set to "XOR" all conditions together. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Create + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Create * a \Drupal\Core\Database\Query\Condition object, specifying a XOR * conjunction: new Condition('XOR'); * @@ -584,7 +584,7 @@ function db_xor() { * @return \Drupal\Core\Database\Query\Condition * A new Condition object, set to the specified conjunction. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Create + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Create * a \Drupal\Core\Database\Query\Condition object, specifying the desired * conjunction: new Condition($conjunction); * @@ -614,7 +614,7 @@ function db_condition($conjunction) { * @param array $table * A Schema API table definition array. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call createTable() on it. For example, * $injected_database->schema()->createTable($name, $table); @@ -639,7 +639,7 @@ function db_create_table($name, $table) { * @return array * An array of field names. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call fieldNames() on it. For example, * $injected_database->schema()->fieldNames($fields); @@ -663,7 +663,7 @@ function db_field_names($fields) { * @return bool * TRUE if the given index exists, otherwise FALSE. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call indexExists() on it. For example, * $injected_database->schema()->indexExists($table, $name); @@ -685,7 +685,7 @@ function db_index_exists($table, $name) { * @return bool * TRUE if the given table exists, otherwise FALSE. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call tableExists() on it. For example, * $injected_database->schema()->tableExists($table); @@ -713,7 +713,7 @@ function db_table_exists($table) { * @return bool * TRUE if the given column exists, otherwise FALSE. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call fieldExists() on it. For example, * $injected_database->schema()->fieldExists($table, $field); @@ -735,7 +735,7 @@ function db_field_exists($table, $field) { * @return array * Array, both the keys and the values are the matching tables. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call findTables() on it. For example, * $injected_database->schema()->findTables($table_expression); @@ -759,7 +759,7 @@ function db_find_tables($table_expression) { * @param $new_name * The new name for the table. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call renameTable() on it. For example, * $injected_database->schema()->renameTable($table, $new_name); @@ -778,7 +778,7 @@ function db_rename_table($table, $new_name) { * @param $table * The table to be dropped. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call dropTable() on it. For example, * $injected_database->schema()->dropTable($table); @@ -810,7 +810,7 @@ function db_drop_table($table) { * MUST specify at least one key or index including it in this array. See * \Drupal\Core\Database\Schema::changeField() for more explanation why. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call addField() on it. For example, * $injected_database->schema()->addField($table, $field, $spec, $keys_new); @@ -836,7 +836,7 @@ function db_add_field($table, $field, $spec, $keys_new = []) { * TRUE if the field was successfully dropped, FALSE if there was no field by * that name to begin with. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call dropField() on it. For example, * $injected_database->schema()->dropField($table, $field); @@ -859,7 +859,7 @@ function db_drop_field($table, $field) { * @param $default * Default value to be set. NULL for 'default NULL'. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call changeField() on it, passing a full field * specification. For example, @@ -882,7 +882,7 @@ function db_field_set_default($table, $field, $default) { * @param $field * The field to be altered. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call changeField() on it, passing a full field * specification. For example, @@ -905,7 +905,7 @@ function db_field_set_no_default($table, $field) { * @param $fields * Array of fields for the primary key. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call addPrimaryKey() on it. For example, * $injected_database->schema()->addPrimaryKey($table, $fields); @@ -928,7 +928,7 @@ function db_add_primary_key($table, $fields) { * TRUE if the primary key was successfully dropped, FALSE if there was no * primary key on this table to begin with. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call dropPrimaryKey() on it. For example, * $injected_database->schema()->dropPrimaryKey($table); @@ -951,7 +951,7 @@ function db_drop_primary_key($table) { * @param array $fields * An array of field names. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call addUniqueKey() on it. For example, * $injected_database->schema()->addUniqueKey($table, $name, $fields); @@ -976,7 +976,7 @@ function db_add_unique_key($table, $name, $fields) { * TRUE if the key was successfully dropped, FALSE if there was no key by * that name to begin with. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call dropUniqueKey() on it. For example, * $injected_database->schema()->dropUniqueKey($table, $name); @@ -1003,7 +1003,7 @@ function db_drop_unique_key($table, $name) { * definition. See \Drupal\Core\Database\Schema::addIndex() for how to obtain * this specification. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call addIndex() on it. For example, * $injected_database->schema()->addIndex($table, $name, $fields, $spec); @@ -1030,7 +1030,7 @@ function db_add_index($table, $name, $fields, array $spec) { * TRUE if the index was successfully dropped, FALSE if there was no index * by that name to begin with. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call dropIndex() on it. For example, * $injected_database->schema()->dropIndex($table, $name); @@ -1105,7 +1105,7 @@ function db_drop_index($table, $name) { * with changing the field. The format is the same as a table specification * but without the 'fields' element. * - * @deprecated in drupal:8.0.0 and will be removed from drupal:9.0.0. Instead, + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, * get a database connection injected into your service from the container, * get its schema driver, and call changeField() on it. For example, * $injected_database->schema() @@ -1128,7 +1128,7 @@ function db_change_field($table, $field, $field_new, $spec, $keys_new = []) { * server (A replica server is traditionally referred to as * a "slave" in database server documentation). * - * @deprecated in drupal:8.7.0, will be removed from drupal:9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal::service('database.replica_kill_switch')->trigger() instead. * * @see https://www.drupal.org/node/2997500 diff --git a/core/includes/entity.inc b/core/includes/entity.inc index 3de7308..653305c 100644 --- a/core/includes/entity.inc +++ b/core/includes/entity.inc @@ -10,7 +10,7 @@ /** * Clears the entity render cache for all entity types. * - * @deprecated in Drupal 8.7.x and will be removed before Drupal 9.0.0. Instead, + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Instead, * use \Drupal\Core\Entity\EntityViewBuilderInterface::resetCache() on the * required entity types or invalidate specific cache tags. * @@ -38,7 +38,7 @@ function entity_render_cache_clear() { * @return array * The bundle info for a specific entity type, or all entity types. * - * @deprecated in Drupal 8.x-dev and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Entity\EntityTypeBundleInfoInterface::getBundleInfo() for a * single bundle, or * \Drupal\Core\Entity\EntityTypeBundleInfoInterface::getAllBundleInfo() for @@ -71,7 +71,7 @@ function entity_get_bundles($entity_type = NULL) { * @return \Drupal\Core\Entity\EntityInterface|null * The entity object, or NULL if there is no entity with the given ID. * - * @deprecated in Drupal 8.0.x, will be removed before Drupal 9.0.0. Use the + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use the * entity type storage's load() method. * * @see https://www.drupal.org/node/2266845 @@ -97,7 +97,7 @@ function entity_load($entity_type, $id, $reset = FALSE) { * The entity object, or NULL if there is no entity with the given revision * id. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use the + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use the * entity type storage's loadRevision() method. * * @see https://www.drupal.org/node/1818376 @@ -117,7 +117,7 @@ function entity_revision_load($entity_type, $revision_id) { * @param $revision_id * The revision ID to delete. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use the + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use the * entity type storage's deleteRevision() method. * * @see https://www.drupal.org/node/1818376 @@ -157,7 +157,7 @@ function entity_revision_delete($entity_type, $revision_id) { * @return array * An array of entity objects indexed by their IDs. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use the + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use the * entity type storage's loadMultiple() method. * * @see https://www.drupal.org/node/2266845 @@ -184,7 +184,7 @@ function entity_load_multiple($entity_type, array $ids = NULL, $reset = FALSE) { * An array of entity objects indexed by their IDs. Returns an empty array if * no matching entities are found. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use the + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use the * entity type storage's loadByProperties() method. * * @see https://www.drupal.org/node/3050910 @@ -212,7 +212,7 @@ function entity_load_multiple_by_properties($entity_type, array $values) { * @return \Drupal\Core\Entity\EntityInterface|null * The unchanged entity, or FALSE if the entity cannot be loaded. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use the + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use the * entity type storage's loadUnchanged() method. * * @see https://www.drupal.org/node/1935744 @@ -232,7 +232,7 @@ function entity_load_unchanged($entity_type, $id) { * @param array $ids * An array of entity IDs of the entities to delete. * - * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * the entity storage's delete() method to delete multiple entities: * @code * $storage_handler = \Drupal::entityTypeManager()->getStorage($entity_type); @@ -264,7 +264,7 @@ function entity_delete_multiple($entity_type, array $ids) { * @return \Drupal\Core\Entity\EntityInterface * A new entity object. * - * @deprecated in Drupal 8.0.x, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * The method overriding Entity::create() for the entity type, e.g. * \Drupal\node\Entity\Node::create() if the entity type is known. If the * entity type is variable, use the entity storage's create() method to @@ -297,7 +297,7 @@ function entity_create($entity_type, array $values = []) { * @return string|null * The label of the entity, or NULL if there is no label defined. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use the + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use the * entity's label() method. * * @see https://www.drupal.org/node/2549923 @@ -325,7 +325,7 @@ function entity_page_label(EntityInterface $entity, $langcode = NULL) { * @return array * A render array for the entity. * - * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use the entity view builder's view() method for creating a render array: * @code * $view_builder = \Drupal::entityTypeManager() @@ -364,7 +364,7 @@ function entity_view(EntityInterface $entity, $view_mode, $langcode = NULL, $res * A render array for the entities, indexed by the same keys as the * entities array passed in $entities. * - * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use the entity view builder's viewMultiple() method for creating a render * array for the provided entities: * @code @@ -425,7 +425,7 @@ function entity_view_multiple(array $entities, $view_mode, $langcode = NULL, $re * @return \Drupal\Core\Entity\Display\EntityViewDisplayInterface * The entity view display associated with the view mode. * - * @deprecated in drupal:8.8.0 and will be removed from drupal:9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * EntityDisplayRepositoryInterface::getViewDisplay() instead. * * @see https://www.drupal.org/node/2835616 @@ -471,7 +471,7 @@ function entity_get_display($entity_type, $bundle, $view_mode) { * @return \Drupal\Core\Entity\Display\EntityFormDisplayInterface * The entity form display associated with the given form mode. * - * @deprecated in drupal:8.8.0 and will be removed from drupal:9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * EntityDisplayRepositoryInterface::getFormDisplay() instead. * * @see https://www.drupal.org/node/2835616 diff --git a/core/includes/file.inc b/core/includes/file.inc index 6356a3f..b5f6d84 100644 --- a/core/includes/file.inc +++ b/core/includes/file.inc @@ -21,7 +21,7 @@ /** * Default mode for new directories. * - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystem::CHMOD_DIRECTORY. * * @see \Drupal\Core\File\FileSystemInterface::chmod() @@ -32,7 +32,7 @@ /** * Default mode for new files. * - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystem::CHMOD_FILE. * * @see \Drupal\Core\File\FileSystemInterface::chmod() @@ -49,7 +49,7 @@ /** * Flag used to create a directory if not present. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystemInterface::CREATE_DIRECTORY. */ const FILE_CREATE_DIRECTORY = FileSystemInterface::CREATE_DIRECTORY; @@ -57,7 +57,7 @@ /** * Flag used to indicate file permissions may be changed. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystemInterface::MODIFY_PERMISSIONS. */ const FILE_MODIFY_PERMISSIONS = FileSystemInterface::MODIFY_PERMISSIONS; @@ -65,7 +65,7 @@ /** * Flag for dealing with existing files: Appends number until name is unique. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystemInterface::EXISTS_RENAME. */ const FILE_EXISTS_RENAME = FileSystemInterface::EXISTS_RENAME; @@ -73,7 +73,7 @@ /** * Flag for dealing with existing files: Replace the existing file. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystemInterface::EXISTS_REPLACE. */ const FILE_EXISTS_REPLACE = FileSystemInterface::EXISTS_REPLACE; @@ -81,7 +81,7 @@ /** * Flag for dealing with existing files: Do nothing and return FALSE. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystemInterface::EXISTS_ERROR. */ const FILE_EXISTS_ERROR = FileSystemInterface::EXISTS_ERROR; @@ -99,7 +99,7 @@ /** * Returns the scheme of a URI (e.g. a stream). * - * @deprecated in drupal:8.8.0 and will be removed from drupal:9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * Drupal\Core\StreamWrapper\StreamWrapperManagerInterface::getScheme() * instead. * @@ -113,7 +113,7 @@ function file_uri_scheme($uri) { /** * Checks that the scheme of a stream URI is valid. * - * @deprecated in drupal:8.8.0 and will be removed from Drupal 9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * Drupal\Core\StreamWrapper\StreamWrapperManagerInterface::isValidScheme() * instead. * @@ -135,7 +135,7 @@ function file_stream_wrapper_valid_scheme($scheme) { * For example, the URI "public://sample/test.txt" would return * "sample/test.txt". * - * @deprecated in drupal:8.8.0 and will be removed from drupal:9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface::getTarget() * instead. * @@ -152,7 +152,7 @@ function file_uri_target($uri) { * @return string * 'public', 'private' or any other file scheme defined as the default. * - * @deprecated in drupal:8.8.0 and will be removed from drupal:9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * \Drupal::config('system.file')->get('default_scheme') instead. * * @see https://www.drupal.org/node/3049030 @@ -177,7 +177,7 @@ function file_default_scheme() { * @return string * The normalized URI. * - * @deprecated in drupal:8.8.0 and will be removed from drupal:9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface::normalizeUri() * instead. * @@ -317,7 +317,7 @@ function file_url_transform_relative($file_url) { * TRUE if the directory exists (or was created) and is writable. FALSE * otherwise. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystemInterface::prepareDirectory(). */ function file_prepare_directory(&$directory, $options = FileSystemInterface::MODIFY_PERMISSIONS) { @@ -406,7 +406,7 @@ function file_save_htaccess($directory, $private = TRUE, $force_overwrite = FALS * @return string * The desired contents of the .htaccess file. * - * @deprecated in Drupal 8.0.x-dev and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Component\PhpStorage\FileStorage::htaccessLines(). * * @see https://www.drupal.org/node/2418133 @@ -428,7 +428,7 @@ function file_htaccess_lines($private = TRUE) { * @return * TRUE if the URI is allowed. * - * @deprecated in drupal:8.8.0 and will be removed before drupal:9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface::isValidUri() * instead. * @@ -470,7 +470,7 @@ function file_valid_uri($uri) { * @return * The path to the new file, or FALSE in the event of an error. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystemInterface::copy(). * * @see file_copy() @@ -519,7 +519,7 @@ function file_unmanaged_copy($source, $destination = NULL, $replace = FILE_EXIST * @return * TRUE, or FALSE in the event of an error. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystemInterface::getDestinationFilename() instead. * * @see file_unmanaged_copy() @@ -615,7 +615,7 @@ function file_build_uri($path) { * The destination filepath, or FALSE if the file already exists * and FILE_EXISTS_ERROR is specified. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystemInterface::getDestinationFilename(). * * @see https://www.drupal.org/node/3006851 @@ -656,7 +656,7 @@ function file_destination($destination, $replace) { * @return * The path to the new file, or FALSE in the event of an error. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystemInterface::move(). * * @see file_move() @@ -775,7 +775,7 @@ function file_unmunge_filename($filename) { * File path consisting of $directory and a unique filename based off * of $basename. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystemInterface::createFilename(). * * @see https://www.drupal.org/node/3006851 @@ -795,7 +795,7 @@ function file_create_filename($basename, $directory) { * @param $fid * The file id. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityStorageInterface::delete() instead. * * @see file_unmanaged_delete() @@ -818,7 +818,7 @@ function file_delete($fid) { * @param $fids * An array of file ids. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityStorageInterface::delete() instead. * * @see file_unmanaged_delete() @@ -846,7 +846,7 @@ function file_delete_multiple(array $fids) { * TRUE for success or path does not exist, or FALSE in the event of an * error. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystemInterface::delete(). * * @see file_delete() @@ -886,7 +886,7 @@ function file_unmanaged_delete($path) { * TRUE for success or if path does not exist, FALSE in the event of an * error. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystemInterface::deleteRecursive(). * * @see file_unmanaged_delete() @@ -906,7 +906,7 @@ function file_unmanaged_delete_recursive($path, $callback = NULL) { /** * Moves an uploaded file to a new location. * - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystem::moveUploadedFile(). * * @see https://www.drupal.org/node/2418133 @@ -940,7 +940,7 @@ function drupal_move_uploaded_file($filename, $uri) { * @return * A string with the path of the resulting file, or FALSE on error. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystemInterface::saveData(). * * @see file_save_data() @@ -1085,7 +1085,7 @@ function file_scan_directory($dir, $mask, $options = [], $depth = 0) { * A file size limit in bytes based on the PHP upload_max_filesize and * post_max_size * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Component\Utility\Environment::getUploadMaxSize() instead. */ function file_upload_max_size() { @@ -1096,7 +1096,7 @@ function file_upload_max_size() { /** * Sets the permissions on a file or directory. * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystem::chmod(). * * @see https://www.drupal.org/node/2418133 @@ -1109,7 +1109,7 @@ function drupal_chmod($uri, $mode = NULL) { /** * Deletes a file. * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystem::unlink(). * * @see \Drupal\Core\File\FileSystem::unlink() @@ -1123,7 +1123,7 @@ function drupal_unlink($uri, $context = NULL) { /** * Resolves the absolute filepath of a local URI or filepath. * - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystem::realpath(). * * @see https://www.drupal.org/node/2418133 @@ -1135,7 +1135,7 @@ function drupal_realpath($uri) { /** * Gets the name of the directory from a given path. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystem::dirname(). * * @see https://www.drupal.org/node/2418133 @@ -1148,7 +1148,7 @@ function drupal_dirname($uri) { /** * Gets the filename from a given path. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystem::basename(). * * @see https://www.drupal.org/node/2418133 @@ -1162,7 +1162,7 @@ function drupal_basename($uri, $suffix = NULL) { * Creates a directory, optionally creating missing components in the path to * the directory. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystem::mkdir(). * * @see https://www.drupal.org/node/2418133 @@ -1175,7 +1175,7 @@ function drupal_mkdir($uri, $mode = NULL, $recursive = FALSE, $context = NULL) { /** * Removes a directory. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystem::rmdir(). * * @see https://www.drupal.org/node/2418133 @@ -1188,7 +1188,7 @@ function drupal_rmdir($uri, $context = NULL) { /** * Creates a file with a unique filename in the specified directory. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystem::tempnam(). * * @see https://www.drupal.org/node/2418133 @@ -1235,7 +1235,7 @@ function file_directory_temp() { * @return mixed * A string containing the path to the temporary directory. * - * @deprecated in Drupal 8.3.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\Component\FileSystem\FileSystem::getOsTemporaryDirectory(). * * @see https://www.drupal.org/node/2418133 diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc index 5258b5d..12a602f 100644 --- a/core/includes/install.core.inc +++ b/core/includes/install.core.inc @@ -2301,7 +2301,7 @@ function install_display_requirements($install_state, $requirements) { * * @see _install_select_profile() * - * @deprecated in Drupal 8.3.0 and will be removed before Drupal 9.0.0. The + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. The * install profile is written to core.extension. */ function install_write_profile($install_state) { diff --git a/core/includes/install.inc b/core/includes/install.inc index 7ac7f3c..26a68c9 100644 --- a/core/includes/install.inc +++ b/core/includes/install.inc @@ -537,7 +537,7 @@ function drupal_install_config_directories() { * @return bool * TRUE if the config directory exists and is writable. * - * @deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.1.0 and is removed from drupal:9.0.0. Use * config_get_config_directory() and * \Drupal\Core\File\FileSystemInterface::prepareDirectory() instead. * diff --git a/core/includes/menu.inc b/core/includes/menu.inc index 89d4891..ae8865a 100644 --- a/core/includes/menu.inc +++ b/core/includes/menu.inc @@ -106,7 +106,7 @@ function menu_list_system_menus() { * @see hook_menu_local_tasks_alter() * @see https://www.drupal.org/node/2544940 * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. */ function menu_local_tasks($level = 0) { /** @var \Drupal\Core\Menu\LocalTaskManagerInterface $manager */ @@ -119,7 +119,7 @@ function menu_local_tasks($level = 0) { * * @see https://www.drupal.org/node/2874695 * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. */ function menu_primary_local_tasks() { /** @var \Drupal\Core\Menu\LocalTaskManagerInterface $manager */ @@ -134,7 +134,7 @@ function menu_primary_local_tasks() { * * @see https://www.drupal.org/node/2874695 * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. */ function menu_secondary_local_tasks() { /** @var \Drupal\Core\Menu\LocalTaskManagerInterface $manager */ @@ -162,7 +162,7 @@ function menu_local_tabs() { * This should be called any time broad changes * might have been made to the router items or menu links. * - * @deprecated in Drupal 8.6.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * \Drupal::cache('menu')->invalidateAll() instead. * * @see https://www.drupal.org/node/2989138 diff --git a/core/includes/module.inc b/core/includes/module.inc index f83e0bd..733cc65 100644 --- a/core/includes/module.inc +++ b/core/includes/module.inc @@ -19,7 +19,7 @@ * For $type 'theme', the array values are objects representing the * respective database row, with the 'info' property already unserialized. * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal::service('theme_handler')->listInfo() instead. * * @see https://www.drupal.org/node/2709919 @@ -45,7 +45,7 @@ function system_list($type) { /** * Resets all system_list() caches. * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. There + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. There * is no direct replacement. Call each * \Drupal::service('extension.list.TYPE')->reset() as necessary. * @@ -70,7 +70,7 @@ function system_list_reset() { * The relative URI of the primary extension file; e.g., * 'core/modules/node/node.module'. * - * @deprecated in Drupal 8.8.0 and will be removed before Drupal 9.0.0. There is + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. There is * no replacement for this function. Use the following sequence of code to * achieve the same functionality: * @code diff --git a/core/includes/schema.inc b/core/includes/schema.inc index 0129d19..5c024a8 100644 --- a/core/includes/schema.inc +++ b/core/includes/schema.inc @@ -218,7 +218,7 @@ function _drupal_schema_initialize(&$schema, $module, $remove_descriptions = TRU * @return mixed * The converted value. * - * @deprecated in drupal:8.8.0 and will be removed from drupal:9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema::castValue() instead. * * @see https://www.drupal.org/node/3051983 diff --git a/core/includes/tablesort.inc b/core/includes/tablesort.inc index f6345d8..f670ff2 100644 --- a/core/includes/tablesort.inc +++ b/core/includes/tablesort.inc @@ -14,7 +14,7 @@ /** * Initializes the table sort context. * - * @deprecated as of Drupal 8.7.x and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Utility\TableSort::getContextFromRequest() instead. * * @see \Drupal\Core\Utility\TableSortInterface::getContextFromRequest() @@ -40,7 +40,7 @@ function tablesort_init($header) { * @param array $ts * The current table sort context as returned from tablesort_init(). * - * @deprecated as of Drupal 8.7.x and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Utility\TableSort::header() instead. * * @see \Drupal\Core\Utility\TableSortInterface::header() @@ -58,7 +58,7 @@ function tablesort_header(&$cell_content, array &$cell_attributes, array $header * A URL query parameter array that consists of all components of the current * page request except for those pertaining to table sorting. * - * @deprecated as of Drupal 8.7.x and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Utility\TableSort::getQueryParameters() instead. * * @see \Drupal\Core\Utility\TableSort::getQueryParameters() @@ -80,7 +80,7 @@ function tablesort_get_query_parameters() { * - "name": The localized title of the table column. * - "sql": The name of the database field to sort on. * - * @deprecated as of Drupal 8.7.x and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Utility\TableSort::getOrder() instead. * * @see \Drupal\Core\Utility\TableSortInterface::getOrder() @@ -100,7 +100,7 @@ function tablesort_get_order($headers) { * @return * The current sort direction ("asc" or "desc"). * - * @deprecated as of Drupal 8.7.x and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Utility\TableSort::getSort() instead. * * @see \Drupal\Core\Utility\TableSortInterface::getSort() diff --git a/core/includes/unicode.inc b/core/includes/unicode.inc index e9cc76c..4419891 100644 --- a/core/includes/unicode.inc +++ b/core/includes/unicode.inc @@ -14,7 +14,7 @@ /** * Moves unicode_requirements() logic to system_requirements(). * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * * @see https://www.drupal.org/node/2884698 */ diff --git a/core/lib/Drupal.php b/core/lib/Drupal.php index b33e0bc..cd0c053 100644 --- a/core/lib/Drupal.php +++ b/core/lib/Drupal.php @@ -263,7 +263,7 @@ public static function currentUser() { * @return \Drupal\Core\Entity\EntityManagerInterface * The entity manager service. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal::entityTypeManager() instead in most cases. If the needed * method is not on \Drupal\Core\Entity\EntityTypeManagerInterface, see the * deprecated \Drupal\Core\Entity\EntityManager to find the @@ -573,7 +573,7 @@ public static function urlGenerator() { * @see \Drupal\Core\Url::fromRoute() * @see \Drupal\Core\Url::fromUri() * - * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Instead create a \Drupal\Core\Url object directly, for example using * Url::fromRoute(). */ @@ -609,7 +609,7 @@ public static function linkGenerator() { * @see \Drupal\Core\Utility\LinkGeneratorInterface::generate() * @see \Drupal\Core\Url * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Link instead. * Example: * @code diff --git a/core/lib/Drupal/Component/Utility/Crypt.php b/core/lib/Drupal/Component/Utility/Crypt.php index 22ddbf8..d8ec87a 100644 --- a/core/lib/Drupal/Component/Utility/Crypt.php +++ b/core/lib/Drupal/Component/Utility/Crypt.php @@ -28,7 +28,7 @@ class Crypt { * @return string * A randomly generated string. * - * @deprecated in Drupal 8.8.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. * Use PHP's built-in random_bytes() function instead. * * @see https://www.drupal.org/node/3054488 diff --git a/core/lib/Drupal/Component/Utility/SafeMarkup.php b/core/lib/Drupal/Component/Utility/SafeMarkup.php index a3f2d68..9d495d9 100644 --- a/core/lib/Drupal/Component/Utility/SafeMarkup.php +++ b/core/lib/Drupal/Component/Utility/SafeMarkup.php @@ -33,7 +33,7 @@ class SafeMarkup { * @return bool * TRUE if the string has been marked secure, FALSE otherwise. * - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Instead, you should just check if a variable is an instance of * \Drupal\Component\Render\MarkupInterface. * @@ -89,7 +89,7 @@ public static function checkPlain($text) { * @see \Drupal\Component\Render\FormattableMarkup::placeholderFormat() * @see \Drupal\Component\Render\FormattableMarkup * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Component\Render\FormattableMarkup. * * @see https://www.drupal.org/node/2549395 diff --git a/core/lib/Drupal/Component/Utility/Unicode.php b/core/lib/Drupal/Component/Utility/Unicode.php index f77bdc1..407325a 100644 --- a/core/lib/Drupal/Component/Utility/Unicode.php +++ b/core/lib/Drupal/Component/Utility/Unicode.php @@ -123,7 +123,7 @@ public static function getStatus() { * @param int $status * The new status of multibyte support. * - * @deprecated in Drupal 8.6.0 and will be removed before Drupal 9.0.0. In + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. In * Drupal 9 there will be no way to set the status and in Drupal 8 this * ability has been removed because mb_*() functions are supplied using * Symfony's polyfill. @@ -260,7 +260,7 @@ public static function truncateBytes($string, $len) { * @return int * The length of the string. * - * @deprecated in Drupal 8.6.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * mb_strlen() instead. * * @see https://www.drupal.org/node/2850048 @@ -279,7 +279,7 @@ public static function strlen($text) { * @return string * The string in uppercase. * - * @deprecated in Drupal 8.6.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * mb_strtoupper() instead. * * @see https://www.drupal.org/node/2850048 @@ -298,7 +298,7 @@ public static function strtoupper($text) { * @return string * The string in lowercase. * - * @deprecated in Drupal 8.6.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * mb_strtolower() instead. * * @see https://www.drupal.org/node/2850048 @@ -372,7 +372,7 @@ public static function ucwords($text) { * @return string * The shortened string. * - * @deprecated in Drupal 8.6.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * mb_substr() instead. * * @see https://www.drupal.org/node/2850048 @@ -611,7 +611,7 @@ public static function validateUtf8($text) { * beginning (independent of $offset), or FALSE if not found. Note that * a return value of 0 is not the same as FALSE. * - * @deprecated in Drupal 8.6.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * mb_strpos() instead. * * @see https://www.drupal.org/node/2850048 diff --git a/core/lib/Drupal/Component/Version/Constraint.php b/core/lib/Drupal/Component/Version/Constraint.php index cbf7270..d7b98e4 100644 --- a/core/lib/Drupal/Component/Version/Constraint.php +++ b/core/lib/Drupal/Component/Version/Constraint.php @@ -61,7 +61,7 @@ public function __toString() { * @return array[] * The constraint represented as an array. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Only exists to provide a backwards compatibility layer. * * @see https://www.drupal.org/node/2756875 diff --git a/core/lib/Drupal/Core/Access/AccessResult.php b/core/lib/Drupal/Core/Access/AccessResult.php index 3abbf33..c789986 100644 --- a/core/lib/Drupal/Core/Access/AccessResult.php +++ b/core/lib/Drupal/Core/Access/AccessResult.php @@ -286,7 +286,7 @@ public function cachePerUser() { * * @return $this * - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * ::addCacheableDependency() instead. */ public function cacheUntilEntityChanges(EntityInterface $entity) { @@ -301,7 +301,7 @@ public function cacheUntilEntityChanges(EntityInterface $entity) { * * @return $this * - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * ::addCacheableDependency() instead. */ public function cacheUntilConfigurationChanges(ConfigBase $configuration) { diff --git a/core/lib/Drupal/Core/Asset/LibraryDiscoveryParser.php b/core/lib/Drupal/Core/Asset/LibraryDiscoveryParser.php index 03b458f..16cac2c 100644 --- a/core/lib/Drupal/Core/Asset/LibraryDiscoveryParser.php +++ b/core/lib/Drupal/Core/Asset/LibraryDiscoveryParser.php @@ -410,7 +410,7 @@ protected function drupalGetPath($type, $name) { /** * Wraps \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface::isValidUri(). * - * @deprecated in drupal:8.8.0 and will be removed before drupal:9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface::isValidUri() * instead. */ diff --git a/core/lib/Drupal/Core/Config/ConfigManagerInterface.php b/core/lib/Drupal/Core/Config/ConfigManagerInterface.php index 44402b7..b5fcc7f 100644 --- a/core/lib/Drupal/Core/Config/ConfigManagerInterface.php +++ b/core/lib/Drupal/Core/Config/ConfigManagerInterface.php @@ -35,7 +35,7 @@ public function loadConfigEntityByName($name); * @return \Drupal\Core\Entity\EntityManagerInterface * The entity manager. * - * @deprecated in Drupal 8.7.x, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Config\ConfigManagerInterface::getEntityTypeManager() * instead. */ diff --git a/core/lib/Drupal/Core/Config/Entity/ConfigDependencyManager.php b/core/lib/Drupal/Core/Config/Entity/ConfigDependencyManager.php index 237929d..9f76962 100644 --- a/core/lib/Drupal/Core/Config/Entity/ConfigDependencyManager.php +++ b/core/lib/Drupal/Core/Config/Entity/ConfigDependencyManager.php @@ -222,7 +222,7 @@ public function sortAll() { /** * Sorts the dependency graph by weight and alphabetically. * - * @deprecated in Drupal 8.2.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.2.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Config\Entity\ConfigDependencyManager::prepareMultisort() and * array_multisort() instead. * @@ -247,7 +247,7 @@ protected static function sortGraphByWeight(array $a, array $b) { /** * Sorts the dependency graph by reverse weight and alphabetically. * - * @deprecated in Drupal 8.2.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.2.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Config\Entity\ConfigDependencyManager::prepareMultisort() and * array_multisort() instead. * diff --git a/core/lib/Drupal/Core/Config/Testing/ConfigSchemaChecker.php b/core/lib/Drupal/Core/Config/Testing/ConfigSchemaChecker.php index ea8e27e..2334e41 100644 --- a/core/lib/Drupal/Core/Config/Testing/ConfigSchemaChecker.php +++ b/core/lib/Drupal/Core/Config/Testing/ConfigSchemaChecker.php @@ -15,7 +15,7 @@ * @see \Drupal\simpletest\WebTestBase::setUp() * @see \Drupal\simpletest\KernelTestBase::containerBuild() * - * @deprecated in Drupal 8.3.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use Drupal\Core\Config\Development\ConfigSchemaChecker. */ class ConfigSchemaChecker extends SchemaChecker { diff --git a/core/lib/Drupal/Core/Controller/ControllerBase.php b/core/lib/Drupal/Core/Controller/ControllerBase.php index 5763a7d..9e5447a 100644 --- a/core/lib/Drupal/Core/Controller/ControllerBase.php +++ b/core/lib/Drupal/Core/Controller/ControllerBase.php @@ -124,7 +124,7 @@ public static function create(ContainerInterface $container) { * @return \Drupal\Core\Entity\EntityManagerInterface * The entity manager service. * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Most of the time static::entityTypeManager() is supposed to be used * instead. */ diff --git a/core/lib/Drupal/Core/Database/Query/SelectInterface.php b/core/lib/Drupal/Core/Database/Query/SelectInterface.php index 4b4c8e8..1d4c795 100644 --- a/core/lib/Drupal/Core/Database/Query/SelectInterface.php +++ b/core/lib/Drupal/Core/Database/Query/SelectInterface.php @@ -341,7 +341,7 @@ public function leftJoin($table, $alias = NULL, $condition = NULL, $arguments = * @return * The unique alias that was assigned for this table. * - * @deprecated as of Drupal 8.1.x, will be removed in Drupal 9.0.0. Instead, + * @deprecated in drupal:8.1.0 and is removed from drupal:9.0.0. Instead, * change the query to use leftJoin(). For instance: * $injected_connection->query('A')->rightJoin('B') is identical to * $injected_connection->query('B')->leftJoin('A'). This functionality has diff --git a/core/lib/Drupal/Core/Database/Schema.php b/core/lib/Drupal/Core/Database/Schema.php index 6b3f61d..35bc11b 100644 --- a/core/lib/Drupal/Core/Database/Schema.php +++ b/core/lib/Drupal/Core/Database/Schema.php @@ -353,7 +353,7 @@ public function fieldExists($table, $column) { * @throws \Drupal\Core\Database\SchemaObjectDoesNotExistException * If the specified table or field doesn't exist. * - * @deprecated as of Drupal 8.7.x, will be removed in Drupal 9.0.0. Instead, + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Instead, * call ::changeField() passing a full field specification. * * @see ::changeField() @@ -371,7 +371,7 @@ public function fieldExists($table, $column) { * @throws \Drupal\Core\Database\SchemaObjectDoesNotExistException * If the specified table or field doesn't exist. * - * @deprecated as of Drupal 8.7.x, will be removed in Drupal 9.0.0. Instead, + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Instead, * call ::changeField() passing a full field specification. * * @see ::changeField() diff --git a/core/lib/Drupal/Core/Datetime/FormattedDateDiff.php b/core/lib/Drupal/Core/Datetime/FormattedDateDiff.php index 266022b..11f1615 100644 --- a/core/lib/Drupal/Core/Datetime/FormattedDateDiff.php +++ b/core/lib/Drupal/Core/Datetime/FormattedDateDiff.php @@ -63,7 +63,7 @@ public function getCacheMaxAge() { * @return int * The maximum time in seconds that this object may be cached. * - * @deprecated in Drupal 8.1.9 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.1.9 and is removed from drupal:9.0.0. Use * \Drupal\Core\Datetime\FormattedDateDiff::getCacheMaxAge() instead. */ public function getMaxAge() { diff --git a/core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php b/core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php index 3ec9306..1b191ba 100644 --- a/core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php +++ b/core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php @@ -597,7 +597,7 @@ public function loadMultipleRevisions(array $revision_ids) { * @return \Drupal\Core\Entity\EntityInterface|null * The specified entity revision or NULL if not found. * - * @deprecated in Drupal 8.5.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * \Drupal\Core\Entity\ContentEntityStorageBase::doLoadMultipleRevisionsFieldItems() * should be implemented instead. * diff --git a/core/lib/Drupal/Core/Entity/Entity.php b/core/lib/Drupal/Core/Entity/Entity.php index 610b239..8a504d4 100644 --- a/core/lib/Drupal/Core/Entity/Entity.php +++ b/core/lib/Drupal/Core/Entity/Entity.php @@ -7,7 +7,7 @@ /** * Defines a base entity class. * - * @deprecated in Drupal 8.7.0 and will be removed in Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Entity\EntityBase instead. * * @see https://www.drupal.org/node/3021808 diff --git a/core/lib/Drupal/Core/Entity/EntityBase.php b/core/lib/Drupal/Core/Entity/EntityBase.php index f6d0b35..9e2188a 100644 --- a/core/lib/Drupal/Core/Entity/EntityBase.php +++ b/core/lib/Drupal/Core/Entity/EntityBase.php @@ -69,7 +69,7 @@ public function __construct(array $values, $entity_type) { * * @return \Drupal\Core\Entity\EntityManagerInterface * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal::entityTypeManager() instead in most cases. If the needed * method is not on \Drupal\Core\Entity\EntityTypeManagerInterface, see the * deprecated \Drupal\Core\Entity\EntityManager to find the diff --git a/core/lib/Drupal/Core/Entity/EntityDefinitionUpdateManagerInterface.php b/core/lib/Drupal/Core/Entity/EntityDefinitionUpdateManagerInterface.php index f8b0b6a..5f73435 100644 --- a/core/lib/Drupal/Core/Entity/EntityDefinitionUpdateManagerInterface.php +++ b/core/lib/Drupal/Core/Entity/EntityDefinitionUpdateManagerInterface.php @@ -109,7 +109,7 @@ public function getChangeList(); * apply some other process, such as a custom update function or a * migration via the Migrate module. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface::getChangeList() * and execute each entity type and field storage update manually instead. * diff --git a/core/lib/Drupal/Core/Entity/EntityForm.php b/core/lib/Drupal/Core/Entity/EntityForm.php index b90d1d2..be4c666 100644 --- a/core/lib/Drupal/Core/Entity/EntityForm.php +++ b/core/lib/Drupal/Core/Entity/EntityForm.php @@ -37,7 +37,7 @@ class EntityForm extends FormBase implements EntityFormInterface { * * @var \Drupal\Core\Entity\EntityManagerInterface * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * * @see https://www.drupal.org/node/2549139 */ diff --git a/core/lib/Drupal/Core/Entity/EntityFormInterface.php b/core/lib/Drupal/Core/Entity/EntityFormInterface.php index 2c29360..a22ddc7 100644 --- a/core/lib/Drupal/Core/Entity/EntityFormInterface.php +++ b/core/lib/Drupal/Core/Entity/EntityFormInterface.php @@ -133,7 +133,7 @@ public function setModuleHandler(ModuleHandlerInterface $module_handler); * * @return $this * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * * @todo Remove this set call in https://www.drupal.org/node/2603542. */ diff --git a/core/lib/Drupal/Core/Entity/EntityHandlerBase.php b/core/lib/Drupal/Core/Entity/EntityHandlerBase.php index e2b6e1c..0ae9c0a 100644 --- a/core/lib/Drupal/Core/Entity/EntityHandlerBase.php +++ b/core/lib/Drupal/Core/Entity/EntityHandlerBase.php @@ -9,7 +9,7 @@ /** * Provides a base class for entity handlers. * - * @deprecated in Drupal 8.0.x, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Implement the container injection pattern of * \Drupal\Core\Entity\EntityHandlerInterface::createInstance() to obtain the * module handler service for your class. diff --git a/core/lib/Drupal/Core/Entity/EntityListBuilder.php b/core/lib/Drupal/Core/Entity/EntityListBuilder.php index 3039c4f..bc7729b 100644 --- a/core/lib/Drupal/Core/Entity/EntityListBuilder.php +++ b/core/lib/Drupal/Core/Entity/EntityListBuilder.php @@ -113,7 +113,7 @@ protected function getEntityIds() { * @return string * The entity label. * - * @deprecated in Drupal 8.0.x, will be removed before Drupal 9.0.0 + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0 * Use $entity->label() instead. This method used to escape the entity * label. The render system's autoescape is now relied upon. */ diff --git a/core/lib/Drupal/Core/Entity/EntityManager.php b/core/lib/Drupal/Core/Entity/EntityManager.php index 14de96e..abf81b3 100644 --- a/core/lib/Drupal/Core/Entity/EntityManager.php +++ b/core/lib/Drupal/Core/Entity/EntityManager.php @@ -21,7 +21,7 @@ class EntityManager implements EntityManagerInterface, ContainerAwareInterface { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::clearCachedDefinitions() * instead. * @@ -42,7 +42,7 @@ public function clearCachedDefinitions() { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::getDefinition() * instead. * @@ -56,7 +56,7 @@ public function getDefinition($entity_type_id, $exception_on_invalid = TRUE) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::hasHandler() * instead. * @@ -70,7 +70,7 @@ public function hasHandler($entity_type_id, $handler_type) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::getStorage() instead. * * @see https://www.drupal.org/node/2549139 @@ -83,7 +83,7 @@ public function getStorage($entity_type_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::getListBuilder() * instead. * @@ -97,7 +97,7 @@ public function getListBuilder($entity_type_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::getFormObject() * instead. * @@ -111,7 +111,7 @@ public function getFormObject($entity_type_id, $operation) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::getRouteProviders() * instead. * @@ -125,7 +125,7 @@ public function getRouteProviders($entity_type_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::getViewBuilder() * instead. * @@ -139,7 +139,7 @@ public function getViewBuilder($entity_type_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::getAccessControlHandler() * instead. * @@ -153,7 +153,7 @@ public function getAccessControlHandler($entity_type_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::getHandler() instead. * * @see https://www.drupal.org/node/2549139 @@ -166,7 +166,7 @@ public function getHandler($entity_type_id, $handler_type) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::createHandlerInstance() * instead. * @@ -180,7 +180,7 @@ public function createHandlerInstance($class, EntityTypeInterface $definition = /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityFieldManagerInterface::getBaseFieldDefinitions() * instead. * @@ -194,7 +194,7 @@ public function getBaseFieldDefinitions($entity_type_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityFieldManagerInterface::getFieldDefinitions() * instead. * @@ -208,7 +208,7 @@ public function getFieldDefinitions($entity_type_id, $bundle) { /** * {@inheritdoc} * - * @deprecated in drupal:8.0.0, will be removed before drupal:9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityFieldManagerInterface::getFieldStorageDefinitions() * instead. * @@ -222,7 +222,7 @@ public function getFieldStorageDefinitions($entity_type_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityFieldManagerInterface::getActiveFieldStorageDefinitions() * instead. * @@ -236,7 +236,7 @@ public function getActiveFieldStorageDefinitions($entity_type_id) { /** * {@inheritdoc} * - * @deprecated in drupal:8.0.0, will be removed before drupal:9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityFieldManagerInterface::setFieldMap() * instead. * @@ -250,7 +250,7 @@ public function setFieldMap(array $field_map) { /** * {@inheritdoc} * - * @deprecated in drupal:8.0.0, will be removed before drupal:9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityFieldManagerInterface::getFieldMap() * instead. * @@ -264,7 +264,7 @@ public function getFieldMap() { /** * {@inheritdoc} * - * @deprecated in drupal:8.0.0, will be removed before drupal:9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityFieldManagerInterface::getFieldMapByFieldType() * instead. * @@ -278,7 +278,7 @@ public function getFieldMapByFieldType($field_type) { /** * {@inheritdoc} * - * @deprecated in drupal:8.0.0, will be removed before drupal:9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Field\FieldDefinitionListenerInterface::onFieldDefinitionCreate() * instead. * @@ -292,7 +292,7 @@ public function onFieldDefinitionCreate(FieldDefinitionInterface $field_definiti /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Field\FieldDefinitionListenerInterface::onFieldDefinitionUpdate() * instead. * @@ -306,7 +306,7 @@ public function onFieldDefinitionUpdate(FieldDefinitionInterface $field_definiti /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Field\FieldDefinitionListenerInterface::onFieldDefinitionDelete() * instead. * @@ -320,7 +320,7 @@ public function onFieldDefinitionDelete(FieldDefinitionInterface $field_definiti /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityFieldManagerInterface::clearCachedFieldDefinitions() * instead. * @@ -334,7 +334,7 @@ public function clearCachedFieldDefinitions() { /** * {@inheritdoc} * - * @deprecated in drupal:8.0.0, will be removed before drupal:9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeBundleInfoInterface::clearCachedBundles() * instead. * @@ -348,7 +348,7 @@ public function clearCachedBundles() { /** * {@inheritdoc} * - * @deprecated in drupal:8.0.0, will be removed before drupal:9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeBundleInfoInterface::getBundleInfo() * instead. * @@ -362,7 +362,7 @@ public function getBundleInfo($entity_type_id) { /** * {@inheritdoc} * - * @deprecated in drupal:8.0.0, will be removed before drupal:9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeBundleInfoInterface::getAllBundleInfo() * instead. * @@ -376,7 +376,7 @@ public function getAllBundleInfo() { /** * {@inheritdoc} * - * @deprecated in drupal:8.0.0, will be removed before drupal:9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityFieldManagerInterface::getExtraFields() * instead. * @@ -390,7 +390,7 @@ public function getExtraFields($entity_type_id, $bundle) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeRepositoryInterface::getEntityTypeLabels() * instead. * @@ -404,7 +404,7 @@ public function getEntityTypeLabels($group = FALSE) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityRepositoryInterface::getTranslationFromContext() * instead. * @@ -418,7 +418,7 @@ public function getTranslationFromContext(EntityInterface $entity, $langcode = N /** * {@inheritdoc} * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityRepositoryInterface::getActive() instead. * * @see https://www.drupal.org/node/2549139 @@ -431,7 +431,7 @@ public function getActive($entity_type_id, $entity_id, array $contexts = NULL) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityRepositoryInterface::getActiveMultiple() * instead. * @@ -445,7 +445,7 @@ public function getActiveMultiple($entity_type_id, array $entity_ids, array $con /** * {@inheritdoc} * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityRepositoryInterface::getCanonical() * instead. * @@ -459,7 +459,7 @@ public function getCanonical($entity_type_id, $entity_id, array $contexts = NULL /** * {@inheritdoc} * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityRepositoryInterface::getCanonicalMultiple() * instead. * @@ -473,7 +473,7 @@ public function getCanonicalMultiple($entity_type_id, array $entity_ids, array $ /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityDisplayRepositoryInterface::getAllViewModes() * instead. * @@ -487,7 +487,7 @@ public function getAllViewModes() { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityDisplayRepositoryInterface::getViewModes() * instead. * @@ -501,7 +501,7 @@ public function getViewModes($entity_type_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityDisplayRepositoryInterface::getAllFormModes() * instead. * @@ -515,7 +515,7 @@ public function getAllFormModes() { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityDisplayRepositoryInterface::getFormModes() * instead. * @@ -529,7 +529,7 @@ public function getFormModes($entity_type_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityDisplayRepositoryInterface::getViewModeOptions() * instead. * @@ -543,7 +543,7 @@ public function getViewModeOptions($entity_type_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityDisplayRepositoryInterface::getFormModeOptions() * instead. * @@ -557,7 +557,7 @@ public function getFormModeOptions($entity_type_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityDisplayRepositoryInterface::getViewModeOptionsByBundle() * instead. * @@ -571,7 +571,7 @@ public function getViewModeOptionsByBundle($entity_type_id, $bundle) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityDisplayRepositoryInterface::getFormModeOptionsByBundle() * instead. * @@ -585,7 +585,7 @@ public function getFormModeOptionsByBundle($entity_type_id, $bundle) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityDisplayRepositoryInterface::clearDisplayModeInfo() * instead. * @@ -599,7 +599,7 @@ public function clearDisplayModeInfo() { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityRepositoryInterface::loadEntityByUuid() * instead. * @@ -613,7 +613,7 @@ public function loadEntityByUuid($entity_type_id, $uuid) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityRepositoryInterface::loadEntityByConfigTarget() * instead. * @@ -627,7 +627,7 @@ public function loadEntityByConfigTarget($entity_type_id, $target) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeRepositoryInterface::getEntityTypeFromClass() * instead. * @@ -649,7 +649,7 @@ public function onEntityTypeCreate(EntityTypeInterface $entity_type) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeListenerInterface::onEntityTypeUpdate() * instead. * @@ -663,7 +663,7 @@ public function onEntityTypeUpdate(EntityTypeInterface $entity_type, EntityTypeI /** * {@inheritdoc} * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeListenerInterface::onFieldableEntityTypeUpdate() * instead. * @@ -676,7 +676,7 @@ public function onFieldableEntityTypeUpdate(EntityTypeInterface $entity_type, En /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeListenerInterface::onEntityTypeDelete() * instead. * @@ -690,7 +690,7 @@ public function onEntityTypeDelete(EntityTypeInterface $entity_type) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Field\FieldStorageDefinitionListenerInterface::onFieldStorageDefinitionCreate() * instead. * @@ -704,7 +704,7 @@ public function onFieldStorageDefinitionCreate(FieldStorageDefinitionInterface $ /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Field\FieldStorageDefinitionListenerInterface::onFieldStorageDefinitionUpdate() * instead. * @@ -718,7 +718,7 @@ public function onFieldStorageDefinitionUpdate(FieldStorageDefinitionInterface $ /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Field\FieldStorageDefinitionListenerInterface::onFieldStorageDefinitionDelete() * instead. * @@ -732,7 +732,7 @@ public function onFieldStorageDefinitionDelete(FieldStorageDefinitionInterface $ /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityBundleListenerInterface::onBundleCreate() * instead. * @@ -746,7 +746,7 @@ public function onBundleCreate($bundle, $entity_type_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityBundleListenerInterface::onBundleDelete() * instead. * @@ -760,7 +760,7 @@ public function onBundleDelete($bundle, $entity_type_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityLastInstalledSchemaRepositoryInterface::getLastInstalledDefinition() * instead. * @@ -793,7 +793,7 @@ public function useCaches($use_caches = FALSE) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityLastInstalledSchemaRepositoryInterface::getLastInstalledFieldStorageDefinitions() * instead. * @@ -807,7 +807,7 @@ public function getLastInstalledFieldStorageDefinitions($entity_type_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::getDefinitions() * instead. * @@ -821,7 +821,7 @@ public function getDefinitions() { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::hasDefinition() * instead. * @@ -835,7 +835,7 @@ public function hasDefinition($plugin_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::getActiveDefinition() * instead. * @@ -849,7 +849,7 @@ public function getActiveDefinition($entity_type_id) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::createInstance() * instead. * @@ -863,7 +863,7 @@ public function createInstance($plugin_id, array $configuration = []) { /** * {@inheritdoc} * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::getInstance() * instead. * @@ -877,7 +877,7 @@ public function getInstance(array $options) { /** * {@inheritdoc} * - * @deprecated in drupal:8.8.0, will be removed before drupal:9.0.0. + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::getViewDisplay() * instead. */ @@ -889,7 +889,7 @@ public function getViewDisplay($entity_type, $bundle, $view_mode = self::DEFAULT /** * {@inheritdoc} * - * @deprecated in drupal:8.8.0, will be removed before drupal:9.0.0. + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityTypeManagerInterface::getFormwDisplay() * instead. */ diff --git a/core/lib/Drupal/Core/Entity/EntityManagerInterface.php b/core/lib/Drupal/Core/Entity/EntityManagerInterface.php index f303e0c..efb2799 100644 --- a/core/lib/Drupal/Core/Entity/EntityManagerInterface.php +++ b/core/lib/Drupal/Core/Entity/EntityManagerInterface.php @@ -8,14 +8,14 @@ /** * Provides an interface for entity type managers. * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * * @see https://www.drupal.org/node/2549139 */ interface EntityManagerInterface extends EntityTypeListenerInterface, EntityBundleListenerInterface, FieldStorageDefinitionListenerInterface, FieldDefinitionListenerInterface, EntityTypeManagerInterface, EntityTypeRepositoryInterface, EntityTypeBundleInfoInterface, EntityDisplayRepositoryInterface, EntityFieldManagerInterface, EntityRepositoryInterface { /** - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Entity\EntityLastInstalledSchemaRepositoryInterface::getLastInstalledDefinition() * instead. * @@ -24,7 +24,7 @@ public function getLastInstalledDefinition($entity_type_id); /** - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Entity\EntityLastInstalledSchemaRepositoryInterface::getLastInstalledFieldStorageDefinitions() * instead. * diff --git a/core/lib/Drupal/Core/Entity/EntityType.php b/core/lib/Drupal/Core/Entity/EntityType.php index db0def3..0184b7d 100644 --- a/core/lib/Drupal/Core/Entity/EntityType.php +++ b/core/lib/Drupal/Core/Entity/EntityType.php @@ -96,7 +96,7 @@ class EntityType extends PluginDefinition implements EntityTypeInterface { * * @var callable|null * - * @deprecated in Drupal 8.0.x-dev and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use Drupal\Core\Entity\EntityInterface::label() for complex label * generation as needed. * diff --git a/core/lib/Drupal/Core/Entity/EntityTypeInterface.php b/core/lib/Drupal/Core/Entity/EntityTypeInterface.php index 77fa493..3b45699 100644 --- a/core/lib/Drupal/Core/Entity/EntityTypeInterface.php +++ b/core/lib/Drupal/Core/Entity/EntityTypeInterface.php @@ -364,7 +364,7 @@ public function entityClassImplements($interface); * @return bool * TRUE if the entity type is a subclass of the class or interface. * - * @deprecated in Drupal 8.3.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use Drupal\Core\Entity\EntityTypeInterface::entityClassImplements() * instead. */ @@ -488,7 +488,7 @@ public function setLinkTemplate($key, $path); * @return callable|null * The callback, or NULL if none exists. * - * @deprecated in Drupal 8.0.x-dev and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use Drupal\Core\Entity\EntityInterface::label() for complex label * generation as needed. * @@ -508,7 +508,7 @@ public function getLabelCallback(); * * @return $this * - * @deprecated in Drupal 8.0.x-dev and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use EntityInterface::label() for complex label generation as needed. * * @see \Drupal\Core\Entity\EntityInterface::label() @@ -522,7 +522,7 @@ public function setLabelCallback($callback); * * @return bool * - * @deprecated in Drupal 8.0.x-dev and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use EntityInterface::label() for complex label generation as needed. * * @see \Drupal\Core\Entity\EntityInterface::label() diff --git a/core/lib/Drupal/Core/Entity/EntityTypeRepositoryInterface.php b/core/lib/Drupal/Core/Entity/EntityTypeRepositoryInterface.php index 5bb2c8d..4d4a430 100644 --- a/core/lib/Drupal/Core/Entity/EntityTypeRepositoryInterface.php +++ b/core/lib/Drupal/Core/Entity/EntityTypeRepositoryInterface.php @@ -45,7 +45,7 @@ public function getEntityTypeFromClass($class_name); /** * Clear the static cache. * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * * @todo Remove in https://www.drupal.org/node/2549143. */ diff --git a/core/lib/Drupal/Core/Entity/Plugin/EntityReferenceSelection/SelectionBase.php b/core/lib/Drupal/Core/Entity/Plugin/EntityReferenceSelection/SelectionBase.php index eacd94b..8deb139 100644 --- a/core/lib/Drupal/Core/Entity/Plugin/EntityReferenceSelection/SelectionBase.php +++ b/core/lib/Drupal/Core/Entity/Plugin/EntityReferenceSelection/SelectionBase.php @@ -3,7 +3,7 @@ namespace Drupal\Core\Entity\Plugin\EntityReferenceSelection; /** - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\Plugin\EntityReferenceSelection\DefaultSelection */ class SelectionBase extends DefaultSelection {} diff --git a/core/lib/Drupal/Core/Entity/Query/QueryFactory.php b/core/lib/Drupal/Core/Entity/Query/QueryFactory.php index 309c722..0ff7b40 100644 --- a/core/lib/Drupal/Core/Entity/Query/QueryFactory.php +++ b/core/lib/Drupal/Core/Entity/Query/QueryFactory.php @@ -15,7 +15,7 @@ * Any implementation of this service must call getQuery()/getAggregateQuery() * of the corresponding entity storage. * - * @deprecated in Drupal 8.3.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Entity\EntityStorageInterface::getQuery() or * \Drupal\Core\Entity\EntityStorageInterface::getAggregateQuery() instead. * diff --git a/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php b/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php index 74d072c..3f79143 100644 --- a/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php +++ b/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php @@ -164,7 +164,7 @@ public static function createInstance(ContainerInterface $container, EntityTypeI * The array of base field definitions for the entity type, keyed by field * name. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityFieldManagerInterface::getActiveFieldStorageDefinitions() * instead. * @@ -1815,7 +1815,7 @@ public function countFieldData($storage_definition, $as_bool = FALSE) { * @return bool * Whether the field has been already deleted. * - * @deprecated in Drupal 8.5.x, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Field\FieldStorageDefinitionInterface::isDeleted() instead. * * @see https://www.drupal.org/node/2907785 diff --git a/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchemaConverter.php b/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchemaConverter.php index 037c9f9..dcbc32c 100644 --- a/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchemaConverter.php +++ b/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchemaConverter.php @@ -10,7 +10,7 @@ /** * Defines a schema converter for entity types with existing data. * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface::updateFieldableEntityType() * instead. * diff --git a/core/lib/Drupal/Core/Entity/Sql/TemporaryTableMapping.php b/core/lib/Drupal/Core/Entity/Sql/TemporaryTableMapping.php index abcb017..e73ed5e 100644 --- a/core/lib/Drupal/Core/Entity/Sql/TemporaryTableMapping.php +++ b/core/lib/Drupal/Core/Entity/Sql/TemporaryTableMapping.php @@ -9,7 +9,7 @@ /** * Defines a temporary table mapping class. * - * @deprecated in Drupal 8.7.x and will be removed before Drupal 9.0.0. Use the + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use the * default table mapping with a prefix instead. */ class TemporaryTableMapping extends DefaultTableMapping { diff --git a/core/lib/Drupal/Core/Extension/ModuleHandler.php b/core/lib/Drupal/Core/Extension/ModuleHandler.php index 3b60d52..53cd1c1 100644 --- a/core/lib/Drupal/Core/Extension/ModuleHandler.php +++ b/core/lib/Drupal/Core/Extension/ModuleHandler.php @@ -715,7 +715,7 @@ protected function verifyImplementations(&$implementations, $hook) { * '<=', '>', or '>='. 'version' is one piece like '4.5-beta3'. * Callers should pass this structure to drupal_check_incompatibility(). * - * @deprecated in Drupal 8.7.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Extension\Dependency::createFromString() instead. * * @see https://www.drupal.org/node/2756875 diff --git a/core/lib/Drupal/Core/Extension/ThemeHandlerInterface.php b/core/lib/Drupal/Core/Extension/ThemeHandlerInterface.php index 97f103a..4c585b2 100644 --- a/core/lib/Drupal/Core/Extension/ThemeHandlerInterface.php +++ b/core/lib/Drupal/Core/Extension/ThemeHandlerInterface.php @@ -23,7 +23,7 @@ * @throws \Drupal\Core\Extension\ExtensionNameLengthException * Thrown when the theme name is to long. * - * @deprecated in Drupal 8.0.x-dev and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use the theme_installer service instead. * * @see \Drupal\Core\Extension\ThemeInstallerInterface::install @@ -44,7 +44,7 @@ public function install(array $theme_list, $install_dependencies = TRUE); * * @see hook_themes_uninstalled() * - * @deprecated in Drupal 8.0.x-dev and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use the theme_installer service instead. * * @see \Drupal\Core\Extension\ThemeInstallerInterface::uninstall @@ -168,7 +168,7 @@ public function getDefault(); * * @return $this * - * @deprecated in Drupal 8.2.x-dev and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.2.0 and is removed from drupal:9.0.0. * Use * @code * \Drupal::configFactory() diff --git a/core/lib/Drupal/Core/Field/AllowedTagsXssTrait.php b/core/lib/Drupal/Core/Field/AllowedTagsXssTrait.php index 836b8d9..c356cc3 100644 --- a/core/lib/Drupal/Core/Field/AllowedTagsXssTrait.php +++ b/core/lib/Drupal/Core/Field/AllowedTagsXssTrait.php @@ -5,7 +5,7 @@ /** * Useful methods when dealing with displaying allowed tags. * - * @deprecated in Drupal 8.0.x, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Field\FieldFilteredMarkup instead. * * @see \Drupal\Core\Field\FieldFilteredMarkup diff --git a/core/lib/Drupal/Core/Field/BaseFieldDefinition.php b/core/lib/Drupal/Core/Field/BaseFieldDefinition.php index cc41f2e..b508f8b 100644 --- a/core/lib/Drupal/Core/Field/BaseFieldDefinition.php +++ b/core/lib/Drupal/Core/Field/BaseFieldDefinition.php @@ -305,7 +305,7 @@ public function isQueryable() { * @return static * The object itself for chaining. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Field\BaseFieldDefinition::setCustomStorage() instead. * * @see https://www.drupal.org/node/2856563 @@ -637,7 +637,7 @@ public function getMainPropertyName() { /** * Helper to retrieve the field item class. * - * @deprecated in Drupal 8.5.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\TypedData\ListDataDefinition::getClass() instead. */ protected function getFieldItemClass() { diff --git a/core/lib/Drupal/Core/Field/FieldStorageDefinitionInterface.php b/core/lib/Drupal/Core/Field/FieldStorageDefinitionInterface.php index d3711f7..76fb5e5 100644 --- a/core/lib/Drupal/Core/Field/FieldStorageDefinitionInterface.php +++ b/core/lib/Drupal/Core/Field/FieldStorageDefinitionInterface.php @@ -114,7 +114,7 @@ public function isRevisionable(); * @return bool * TRUE if the field is queryable. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Field\FieldStorageDefinitionInterface::hasCustomStorage() * instead. * diff --git a/core/lib/Drupal/Core/Field/Plugin/migrate/field/Email.php b/core/lib/Drupal/Core/Field/Plugin/migrate/field/Email.php index 873b4d7..6cb758a 100644 --- a/core/lib/Drupal/Core/Field/Plugin/migrate/field/Email.php +++ b/core/lib/Drupal/Core/Field/Plugin/migrate/field/Email.php @@ -7,7 +7,7 @@ /** * MigrateField Plugin for Drupal 6 and 7 email fields. * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\field\Plugin\migrate\field\Email instead. * * @see https://www.drupal.org/node/3009286 diff --git a/core/lib/Drupal/Core/Field/Plugin/migrate/field/d7/EntityReference.php b/core/lib/Drupal/Core/Field/Plugin/migrate/field/d7/EntityReference.php index 7ac3615..3715329 100644 --- a/core/lib/Drupal/Core/Field/Plugin/migrate/field/d7/EntityReference.php +++ b/core/lib/Drupal/Core/Field/Plugin/migrate/field/d7/EntityReference.php @@ -7,7 +7,7 @@ /** * MigrateField plugin for Drupal 7 entity_reference fields. * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\field\Plugin\migrate\field\d7\EntityReference instead. * * @see https://www.drupal.org/node/3009286 diff --git a/core/lib/Drupal/Core/Field/Plugin/migrate/field/d7/NumberField.php b/core/lib/Drupal/Core/Field/Plugin/migrate/field/d7/NumberField.php index 68d243b..b7c1d1e 100644 --- a/core/lib/Drupal/Core/Field/Plugin/migrate/field/d7/NumberField.php +++ b/core/lib/Drupal/Core/Field/Plugin/migrate/field/d7/NumberField.php @@ -7,7 +7,7 @@ /** * MigrateField plugin for Drupal 7 number fields. * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\field\Plugin\migrate\field\d7\NumberField instead. * * @see https://www.drupal.org/node/3009286 diff --git a/core/lib/Drupal/Core/Field/PluginSettingsInterface.php b/core/lib/Drupal/Core/Field/PluginSettingsInterface.php index 61ca95d..3a70e4f 100644 --- a/core/lib/Drupal/Core/Field/PluginSettingsInterface.php +++ b/core/lib/Drupal/Core/Field/PluginSettingsInterface.php @@ -8,7 +8,7 @@ /** * Interface definition for plugin with settings. * - * @deprecated in Drupal 8.1.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.1.0 and is removed from drupal:9.0.0. Use * \Drupal\Component\Plugin\ConfigurableInterface instead. */ interface PluginSettingsInterface extends PluginInspectionInterface, ThirdPartySettingsInterface { diff --git a/core/lib/Drupal/Core/File/FileSystemInterface.php b/core/lib/Drupal/Core/File/FileSystemInterface.php index e8440a9..f8e584e 100644 --- a/core/lib/Drupal/Core/File/FileSystemInterface.php +++ b/core/lib/Drupal/Core/File/FileSystemInterface.php @@ -242,7 +242,7 @@ public function tempnam($directory, $prefix); * A string containing the name of the scheme, or FALSE if none. For * example, the URI "public://example.txt" would return "public". * - * @deprecated in drupal:8.8.0 and will be removed from drupal:9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * Drupal\Core\StreamWrapper\StreamWrapperManagerInterface::getScheme() * instead. * @@ -264,7 +264,7 @@ public function uriScheme($uri); * Returns TRUE if the string is the name of a validated stream, or FALSE if * the scheme does not have a registered handler. * - * @deprecated in drupal:8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * Drupal\Core\StreamWrapper\StreamWrapperManagerInterface::isValidScheme() * instead. * diff --git a/core/lib/Drupal/Core/Image/Image.php b/core/lib/Drupal/Core/Image/Image.php index 864ea82..fa774dc 100644 --- a/core/lib/Drupal/Core/Image/Image.php +++ b/core/lib/Drupal/Core/Image/Image.php @@ -210,7 +210,7 @@ public function scale($width, $height = NULL, $upscale = FALSE) { * @return bool * TRUE for success, FALSE in the event of an error. * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\File\FileSystem::chmod(). * * @see \Drupal\Core\File\FileSystemInterface::chmod() diff --git a/core/lib/Drupal/Core/Installer/Exception/InstallProfileMismatchException.php b/core/lib/Drupal/Core/Installer/Exception/InstallProfileMismatchException.php index bca7cca..92195d0 100644 --- a/core/lib/Drupal/Core/Installer/Exception/InstallProfileMismatchException.php +++ b/core/lib/Drupal/Core/Installer/Exception/InstallProfileMismatchException.php @@ -23,7 +23,7 @@ class InstallProfileMismatchException extends InstallerException { * @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation * The string translation manager. * - * @deprecated in Drupal 8.3.0 and will be removed before Drupal 9.0.0. The + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. The * install profile is written to core.extension. * * @see _install_select_profile() diff --git a/core/lib/Drupal/Core/Link.php b/core/lib/Drupal/Core/Link.php index e435d44..a85a8c9 100644 --- a/core/lib/Drupal/Core/Link.php +++ b/core/lib/Drupal/Core/Link.php @@ -11,7 +11,7 @@ class Link implements RenderableInterface { /** - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. */ use LinkGeneratorTrait; diff --git a/core/lib/Drupal/Core/Messenger/LegacyMessenger.php b/core/lib/Drupal/Core/Messenger/LegacyMessenger.php index 35e3609..b3b080b 100644 --- a/core/lib/Drupal/Core/Messenger/LegacyMessenger.php +++ b/core/lib/Drupal/Core/Messenger/LegacyMessenger.php @@ -18,7 +18,7 @@ * @see https://www.drupal.org/node/2774931 * @see https://www.drupal.org/node/2928994 * - * @deprecated in Drupal 8.5.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Messenger\Messenger instead. */ class LegacyMessenger implements MessengerInterface { diff --git a/core/lib/Drupal/Core/ParamConverter/EntityConverter.php b/core/lib/Drupal/Core/ParamConverter/EntityConverter.php index 8027a35..003e6be 100644 --- a/core/lib/Drupal/Core/ParamConverter/EntityConverter.php +++ b/core/lib/Drupal/Core/ParamConverter/EntityConverter.php @@ -164,7 +164,7 @@ public function convert($value, $definition, $name, array $defaults) { * just the latest revision, if the specified entity is not translatable or * does not have a matching translation yet. * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityRepositoryInterface::getActive() instead. */ protected function getLatestTranslationAffectedRevision(RevisionableInterface $entity, $langcode) { @@ -196,7 +196,7 @@ protected function getLatestTranslationAffectedRevision(RevisionableInterface $e * @return \Drupal\Core\Entity\RevisionableInterface * An entity revision object. * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. */ protected function loadRevision(RevisionableInterface $entity, $revision_id) { @trigger_error('\Drupal\Core\ParamConverter\EntityConverter::loadRevision() is deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0.', E_USER_DEPRECATED); diff --git a/core/lib/Drupal/Core/Routing/Enhancer/RouteEnhancerInterface.php b/core/lib/Drupal/Core/Routing/Enhancer/RouteEnhancerInterface.php index 781f9c6..8f04bcb 100644 --- a/core/lib/Drupal/Core/Routing/Enhancer/RouteEnhancerInterface.php +++ b/core/lib/Drupal/Core/Routing/Enhancer/RouteEnhancerInterface.php @@ -10,7 +10,7 @@ /** * A route enhance service to determine route enhance rules. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. Instead, + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Instead, * you should use \Drupal\Core\Routing\EnhancerInterface. * See https://www.drupal.org/node/2894934 * Part of the deprecation means that applies() is now called on runtime instead diff --git a/core/lib/Drupal/Core/Routing/LinkGeneratorTrait.php b/core/lib/Drupal/Core/Routing/LinkGeneratorTrait.php index 2cda6df..28ce6be 100644 --- a/core/lib/Drupal/Core/Routing/LinkGeneratorTrait.php +++ b/core/lib/Drupal/Core/Routing/LinkGeneratorTrait.php @@ -13,7 +13,7 @@ * in the Container should not use this trait but inject the appropriate service * directly for easier testing. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Link instead. * * @see https://www.drupal.org/node/2614344 @@ -37,7 +37,7 @@ * A GeneratedLink object containing a link to the given route and * parameters and bubbleable metadata. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Link instead. * * @see https://www.drupal.org/node/2614344 diff --git a/core/lib/Drupal/Core/Routing/RouteFilterInterface.php b/core/lib/Drupal/Core/Routing/RouteFilterInterface.php index 57aaee3..3dde702 100644 --- a/core/lib/Drupal/Core/Routing/RouteFilterInterface.php +++ b/core/lib/Drupal/Core/Routing/RouteFilterInterface.php @@ -9,7 +9,7 @@ /** * A route filter service to filter down the collection of route instances. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. Instead, + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Instead, * you should use \Drupal\Core\Routing\FilterInterface. * See https://www.drupal.org/node/2894934 */ diff --git a/core/lib/Drupal/Core/Routing/UrlGeneratorTrait.php b/core/lib/Drupal/Core/Routing/UrlGeneratorTrait.php index 7854a0a..295a860 100644 --- a/core/lib/Drupal/Core/Routing/UrlGeneratorTrait.php +++ b/core/lib/Drupal/Core/Routing/UrlGeneratorTrait.php @@ -12,7 +12,7 @@ * in the Container should not use this trait but inject the appropriate service * directly for easier testing. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Url instead. */ trait UrlGeneratorTrait { @@ -33,7 +33,7 @@ * @return string * The generated URL for the given route. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Url instead. * * @see \Drupal\Core\Routing\UrlGeneratorInterface::generateFromRoute() diff --git a/core/lib/Drupal/Core/Session/AccountInterface.php b/core/lib/Drupal/Core/Session/AccountInterface.php index 6a1b30b..b46061b 100644 --- a/core/lib/Drupal/Core/Session/AccountInterface.php +++ b/core/lib/Drupal/Core/Session/AccountInterface.php @@ -112,7 +112,7 @@ public function getPreferredAdminLangcode($fallback_to_default = TRUE); * any other display purposes, use * \Drupal\Core\Session\AccountInterface::getDisplayName() instead. * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Session\AccountInterface::getAccountName() or * \Drupal\user\UserInterface::getDisplayName() instead. * diff --git a/core/lib/Drupal/Core/Session/AccountProxy.php b/core/lib/Drupal/Core/Session/AccountProxy.php index bc7f554..9365fa0 100644 --- a/core/lib/Drupal/Core/Session/AccountProxy.php +++ b/core/lib/Drupal/Core/Session/AccountProxy.php @@ -34,7 +34,7 @@ class AccountProxy implements AccountProxyInterface { * * @var int * - * @deprecated in Drupal 8.3.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * $this->id instead. */ protected $initialAccountId; diff --git a/core/lib/Drupal/Core/StringTranslation/PluralTranslatableMarkup.php b/core/lib/Drupal/Core/StringTranslation/PluralTranslatableMarkup.php index 01c9fe6..08cf810 100644 --- a/core/lib/Drupal/Core/StringTranslation/PluralTranslatableMarkup.php +++ b/core/lib/Drupal/Core/StringTranslation/PluralTranslatableMarkup.php @@ -16,7 +16,7 @@ class PluralTranslatableMarkup extends TranslatableMarkup { * separate singular and plural variants in source and translation text. It * was found to be the most compatible delimiter for the supported databases. * - * @deprecated in Drupal 8.7.x, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use Drupal\Component\Gettext\PoItem::DELIMITER instead. */ const DELIMITER = PoItem::DELIMITER; diff --git a/core/lib/Drupal/Core/StringTranslation/TranslationWrapper.php b/core/lib/Drupal/Core/StringTranslation/TranslationWrapper.php index 60fe30f..5a2f7fd 100644 --- a/core/lib/Drupal/Core/StringTranslation/TranslationWrapper.php +++ b/core/lib/Drupal/Core/StringTranslation/TranslationWrapper.php @@ -5,7 +5,7 @@ /** * Provides translatable string class. * - * @deprecated in Drupal 8.x, will be removed before Drupal 9.0. + * @deprecated in drupal:8.0 and is removed from drupal:9.0. * Use the \Drupal\Core\StringTranslation\TranslatableMarkup class instead. */ class TranslationWrapper extends TranslatableMarkup {} diff --git a/core/lib/Drupal/Core/Template/TwigExtension.php b/core/lib/Drupal/Core/Template/TwigExtension.php index b7f51ec..306c3de 100644 --- a/core/lib/Drupal/Core/Template/TwigExtension.php +++ b/core/lib/Drupal/Core/Template/TwigExtension.php @@ -80,7 +80,7 @@ public function __construct(RendererInterface $renderer, UrlGeneratorInterface $ * * @return $this * - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. */ public function setGenerators(UrlGeneratorInterface $url_generator) { return $this->setUrlGenerator($url_generator); @@ -94,7 +94,7 @@ public function setGenerators(UrlGeneratorInterface $url_generator) { * * @return $this * - * @deprecated in Drupal 8.3.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. */ public function setUrlGenerator(UrlGeneratorInterface $url_generator) { $this->urlGenerator = $url_generator; @@ -109,7 +109,7 @@ public function setUrlGenerator(UrlGeneratorInterface $url_generator) { * * @return $this * - * @deprecated in Drupal 8.3.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. */ public function setThemeManager(ThemeManagerInterface $theme_manager) { $this->themeManager = $theme_manager; @@ -124,7 +124,7 @@ public function setThemeManager(ThemeManagerInterface $theme_manager) { * * @return $this * - * @deprecated in Drupal 8.3.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. */ public function setDateFormatter(DateFormatterInterface $date_formatter) { $this->dateFormatter = $date_formatter; diff --git a/core/lib/Drupal/Core/Theme/ActiveTheme.php b/core/lib/Drupal/Core/Theme/ActiveTheme.php index 5976d97..d9ab7c6 100644 --- a/core/lib/Drupal/Core/Theme/ActiveTheme.php +++ b/core/lib/Drupal/Core/Theme/ActiveTheme.php @@ -52,7 +52,7 @@ class ActiveTheme { * * @var static[] * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9. Use * $this->baseThemeExtensions instead. * * @see https://www.drupal.org/node/3019948 @@ -211,7 +211,7 @@ public function getLibraries() { * * @return mixed * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * * @see https://www.drupal.org/node/2497313 */ @@ -227,7 +227,7 @@ public function getStyleSheetsRemove() { * * @return static[] * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Theme\ActiveTheme::getBaseThemeExtensions() instead. * * @see https://www.drupal.org/node/3019948 diff --git a/core/modules/action/src/ActionAddForm.php b/core/modules/action/src/ActionAddForm.php index e8da362..c7641e1 100644 --- a/core/modules/action/src/ActionAddForm.php +++ b/core/modules/action/src/ActionAddForm.php @@ -11,7 +11,7 @@ * * @internal * - * @deprecated in Drupal 8.8.x and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * \Drupal\action\Form\ActionEditForm instead. * * @see https://www.drupal.org/node/3033540 diff --git a/core/modules/action/src/ActionEditForm.php b/core/modules/action/src/ActionEditForm.php index d5b352c..aee447f 100644 --- a/core/modules/action/src/ActionEditForm.php +++ b/core/modules/action/src/ActionEditForm.php @@ -11,7 +11,7 @@ * * @internal * - * @deprecated in Drupal 8.8.x and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * \Drupal\action\Form\ActionEditForm instead. * * @see https://www.drupal.org/node/3033540 diff --git a/core/modules/action/src/ActionFormBase.php b/core/modules/action/src/ActionFormBase.php index d7784a2..e7a1ae7 100644 --- a/core/modules/action/src/ActionFormBase.php +++ b/core/modules/action/src/ActionFormBase.php @@ -9,7 +9,7 @@ /** * Provides a base form for action forms. * - * @deprecated in Drupal 8.8.x and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * \Drupal\action\Form\ActionFormBase instead. * * @see https://www.drupal.org/node/3033540 diff --git a/core/modules/aggregator/aggregator.module b/core/modules/aggregator/aggregator.module index 082681e..3a52b12 100644 --- a/core/modules/aggregator/aggregator.module +++ b/core/modules/aggregator/aggregator.module @@ -12,7 +12,7 @@ /** * Denotes that a feed's items should never expire. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\aggregator\FeedStorageInterface::CLEAR_NEVER instead. * * @see https://www.drupal.org/node/2831620 diff --git a/core/modules/basic_auth/src/Tests/BasicAuthTestTrait.php b/core/modules/basic_auth/src/Tests/BasicAuthTestTrait.php index 2d063eb..bef05bc 100644 --- a/core/modules/basic_auth/src/Tests/BasicAuthTestTrait.php +++ b/core/modules/basic_auth/src/Tests/BasicAuthTestTrait.php @@ -7,7 +7,7 @@ /** * Provides common functionality for Basic Authentication test classes. * - * @deprecated in Drupal 8.3.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\basic_auth\Traits\BasicAuthTestTrait instead. * * @see https://www.drupal.org/node/2862800 diff --git a/core/modules/block/src/BlockInterface.php b/core/modules/block/src/BlockInterface.php index f4ce626..d10ace0 100644 --- a/core/modules/block/src/BlockInterface.php +++ b/core/modules/block/src/BlockInterface.php @@ -13,7 +13,7 @@ /** * Indicates the block label (title) should be displayed to end users. * - * @deprecated in Drupal 8.3.x, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Block\BlockPluginInterface::BLOCK_LABEL_VISIBLE. * * @see https://www.drupal.org/node/2829775 diff --git a/core/modules/block/src/Tests/BlockTestBase.php b/core/modules/block/src/Tests/BlockTestBase.php index 7397a47..b250fff 100644 --- a/core/modules/block/src/Tests/BlockTestBase.php +++ b/core/modules/block/src/Tests/BlockTestBase.php @@ -10,7 +10,7 @@ /** * Provides setup and helper methods for block module tests. * - * @deprecated in Drupal 8.5.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\block\Functional\BlockTestBase. * * @see https://www.drupal.org/node/2901823 diff --git a/core/modules/block_content/src/BlockContentInterface.php b/core/modules/block_content/src/BlockContentInterface.php index bba6e46..3e1c0b7 100644 --- a/core/modules/block_content/src/BlockContentInterface.php +++ b/core/modules/block_content/src/BlockContentInterface.php @@ -19,7 +19,7 @@ * @return string * The revision log message. * - * @deprecated in Drupal 8.2.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.2.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Entity\RevisionLogInterface::getRevisionLogMessage() instead. */ public function getRevisionLog(); @@ -44,7 +44,7 @@ public function setInfo($info); * @return \Drupal\block_content\BlockContentInterface * The class instance that this method is called on. * - * @deprecated in Drupal 8.2.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.2.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Entity\RevisionLogInterface::setRevisionLogMessage() instead. */ public function setRevisionLog($revision_log); diff --git a/core/modules/block_content/src/Tests/Views/BlockContentTestBase.php b/core/modules/block_content/src/Tests/Views/BlockContentTestBase.php index ceb71d7..80fa92f 100644 --- a/core/modules/block_content/src/Tests/Views/BlockContentTestBase.php +++ b/core/modules/block_content/src/Tests/Views/BlockContentTestBase.php @@ -13,7 +13,7 @@ /** * Base class for all block_content tests. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\block_content\Functional\Views\BlockContentTestBase. */ abstract class BlockContentTestBase extends ViewTestBase { diff --git a/core/modules/book/src/Plugin/migrate/source/d6/Book.php b/core/modules/book/src/Plugin/migrate/source/d6/Book.php index 58b6eff..8f04131 100644 --- a/core/modules/book/src/Plugin/migrate/source/d6/Book.php +++ b/core/modules/book/src/Plugin/migrate/source/d6/Book.php @@ -14,7 +14,7 @@ * source_module = "book" * ) * - * @deprecated in Drupal 8.6.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * \Drupal\book\Plugin\migrate\source\Book instead. See * https://www.drupal.org/node/2947487 for more information. */ diff --git a/core/modules/comment/comment.module b/core/modules/comment/comment.module index 051f335..04f00af 100644 --- a/core/modules/comment/comment.module +++ b/core/modules/comment/comment.module @@ -30,7 +30,7 @@ /** * Anonymous posters cannot enter their contact information. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\comment\CommentInterface::ANONYMOUS_MAYNOT_CONTACT instead. * * @see https://www.drupal.org/node/2831620 @@ -40,7 +40,7 @@ /** * Anonymous posters may leave their contact information. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\comment\CommentInterface::ANONYMOUS_MAY_CONTACT instead. * * @see https://www.drupal.org/node/2831620 @@ -50,7 +50,7 @@ /** * Anonymous posters are required to leave their contact information. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\comment\CommentInterface::ANONYMOUS_MUST_CONTACT instead. * * @see https://www.drupal.org/node/2831620 @@ -273,7 +273,7 @@ function comment_node_view_alter(array &$build, EntityInterface $node, EntityVie * @return array * An array as expected by \Drupal\Core\Render\RendererInterface::render(). * - * @deprecated in Drupal 8.x and will be removed before Drupal 9.0. + * @deprecated in drupal:8.0 and is removed from drupal:9.0. * Use \Drupal::entityTypeManager()->getViewBuilder('comment')->view(). * * @see https://www.drupal.org/node/3033656 @@ -302,7 +302,7 @@ function comment_view(CommentInterface $comment, $view_mode = 'full', $langcode * An array in the format expected by * \Drupal\Core\Render\RendererInterface::render(). * - * @deprecated in Drupal 8.x and will be removed before Drupal 9.0. + * @deprecated in drupal:8.0 and is removed from drupal:9.0. * Use \Drupal::entityTypeManager()->getViewBuilder('comment')->viewMultiple(). * * @see https://www.drupal.org/node/3033656 diff --git a/core/modules/comment/src/CommentInterface.php b/core/modules/comment/src/CommentInterface.php index 5540562..c4408cb 100644 --- a/core/modules/comment/src/CommentInterface.php +++ b/core/modules/comment/src/CommentInterface.php @@ -214,7 +214,7 @@ public function setCreatedTime($created); * @return int * One of CommentInterface::PUBLISHED or CommentInterface::NOT_PUBLISHED * - * @deprecated in Drupal 8.3.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Entity\EntityPublishedInterface::isPublished() instead. */ public function getStatus(); diff --git a/core/modules/comment/src/Plugin/Action/DeleteComment.php b/core/modules/comment/src/Plugin/Action/DeleteComment.php index ef6116c..5d009fb 100644 --- a/core/modules/comment/src/Plugin/Action/DeleteComment.php +++ b/core/modules/comment/src/Plugin/Action/DeleteComment.php @@ -10,7 +10,7 @@ /** * Deletes a comment. * - * @deprecated in Drupal 8.6.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Action\Plugin\Action\DeleteAction instead. * * @see \Drupal\Core\Action\Plugin\Action\DeleteAction diff --git a/core/modules/comment/src/Plugin/Action/PublishComment.php b/core/modules/comment/src/Plugin/Action/PublishComment.php index 9aa1e4a..1b97505 100644 --- a/core/modules/comment/src/Plugin/Action/PublishComment.php +++ b/core/modules/comment/src/Plugin/Action/PublishComment.php @@ -8,7 +8,7 @@ /** * Publishes a comment. * - * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Action\Plugin\Action\PublishAction instead. * * @see \Drupal\Core\Action\Plugin\Action\PublishAction diff --git a/core/modules/comment/src/Plugin/Action/SaveComment.php b/core/modules/comment/src/Plugin/Action/SaveComment.php index c197112..226f5d3 100644 --- a/core/modules/comment/src/Plugin/Action/SaveComment.php +++ b/core/modules/comment/src/Plugin/Action/SaveComment.php @@ -9,7 +9,7 @@ /** * Saves a comment. * - * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Action\Plugin\Action\SaveAction instead. * * @see \Drupal\Core\Action\Plugin\Action\SaveAction diff --git a/core/modules/comment/src/Plugin/Action/UnpublishComment.php b/core/modules/comment/src/Plugin/Action/UnpublishComment.php index 7e867c0..6bea08b 100644 --- a/core/modules/comment/src/Plugin/Action/UnpublishComment.php +++ b/core/modules/comment/src/Plugin/Action/UnpublishComment.php @@ -8,7 +8,7 @@ /** * Unpublishes a comment. * - * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Action\Plugin\Action\UnpublishAction instead. * * @see \Drupal\Core\Action\Plugin\Action\UnpublishAction diff --git a/core/modules/comment/src/Plugin/migrate/source/d6/Comment.php b/core/modules/comment/src/Plugin/migrate/source/d6/Comment.php index 5671d4f..34e6b62 100644 --- a/core/modules/comment/src/Plugin/migrate/source/d6/Comment.php +++ b/core/modules/comment/src/Plugin/migrate/source/d6/Comment.php @@ -45,7 +45,7 @@ public function prepareRow(Row $row) { * The row from the source to process. * @return \Drupal\migrate\Row * The row object. - * @deprecated in Drupal 8.4.x, to be removed before Drupal 9.0.x. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. */ protected function prepareComment(Row $row) { if ($this->variableGet('comment_subject_field_' . $row->getSourceProperty('type'), 1)) { diff --git a/core/modules/comment/src/Plugin/migrate/source/d6/CommentVariable.php b/core/modules/comment/src/Plugin/migrate/source/d6/CommentVariable.php index 7b92da9..e1ab6a0 100644 --- a/core/modules/comment/src/Plugin/migrate/source/d6/CommentVariable.php +++ b/core/modules/comment/src/Plugin/migrate/source/d6/CommentVariable.php @@ -13,7 +13,7 @@ * source_module = "comment" * ) * - * @deprecated in Drupal 8.4.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\node\Plugin\migrate\source\d6\NodeType instead. */ class CommentVariable extends DrupalSqlBase { diff --git a/core/modules/comment/src/Plugin/migrate/source/d6/CommentVariablePerCommentType.php b/core/modules/comment/src/Plugin/migrate/source/d6/CommentVariablePerCommentType.php index 7534df3..a697fbf 100644 --- a/core/modules/comment/src/Plugin/migrate/source/d6/CommentVariablePerCommentType.php +++ b/core/modules/comment/src/Plugin/migrate/source/d6/CommentVariablePerCommentType.php @@ -10,7 +10,7 @@ * source_module = "comment" * ) * - * @deprecated in Drupal 8.4.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\node\Plugin\migrate\source\d6\NodeType instead. */ class CommentVariablePerCommentType extends CommentVariable { diff --git a/core/modules/comment/src/Plugin/migrate/source/d7/CommentType.php b/core/modules/comment/src/Plugin/migrate/source/d7/CommentType.php index f022b42..e84e62a 100644 --- a/core/modules/comment/src/Plugin/migrate/source/d7/CommentType.php +++ b/core/modules/comment/src/Plugin/migrate/source/d7/CommentType.php @@ -16,7 +16,7 @@ * source_module = "comment" * ) * - * @deprecated in Drupal 8.4.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\node\Plugin\migrate\source\d7\NodeType instead. */ class CommentType extends DrupalSqlBase { diff --git a/core/modules/comment/src/Tests/CommentTestBase.php b/core/modules/comment/src/Tests/CommentTestBase.php index 4c23981..6b8b05f 100644 --- a/core/modules/comment/src/Tests/CommentTestBase.php +++ b/core/modules/comment/src/Tests/CommentTestBase.php @@ -15,7 +15,7 @@ /** * Provides setup and helper methods for comment tests. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\comment\Functional\CommentTestBase instead. * * @see https://www.drupal.org/node/2908490 diff --git a/core/modules/comment/src/Tests/Views/CommentTestBase.php b/core/modules/comment/src/Tests/Views/CommentTestBase.php index c364e26..10e56ce 100644 --- a/core/modules/comment/src/Tests/Views/CommentTestBase.php +++ b/core/modules/comment/src/Tests/Views/CommentTestBase.php @@ -12,7 +12,7 @@ /** * Provides setup and helper methods for comment views tests. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\comment\Functional\Views\CommentTestBase instead. * * @see https://www.drupal.org/node/2908490 diff --git a/core/modules/config/src/Tests/AssertConfigEntityImportTrait.php b/core/modules/config/src/Tests/AssertConfigEntityImportTrait.php index afc516b..a7517ed 100644 --- a/core/modules/config/src/Tests/AssertConfigEntityImportTrait.php +++ b/core/modules/config/src/Tests/AssertConfigEntityImportTrait.php @@ -12,7 +12,7 @@ * Can be used by test classes that extend \Drupal\simpletest\WebTestBase or * \Drupal\KernelTests\KernelTestBase. * - * @deprecated in Drupal 8.4.1 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.1 and is removed from drupal:9.0.0. * Use \Drupal\Tests\config\Traits\AssertConfigEntityImportTrait. * * @see https://www.drupal.org/node/2916197 diff --git a/core/modules/config_translation/src/Plugin/migrate/source/d6/I18nProfileField.php b/core/modules/config_translation/src/Plugin/migrate/source/d6/I18nProfileField.php index c27f1d5..7179231 100644 --- a/core/modules/config_translation/src/Plugin/migrate/source/d6/I18nProfileField.php +++ b/core/modules/config_translation/src/Plugin/migrate/source/d6/I18nProfileField.php @@ -12,7 +12,7 @@ * source_module = "i18nprofile" * ) * - * @deprecated in Drupal 8.4.x and will be removed in Drupal 9.0.x. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\config_translation\Plugin\migrate\source\d6\ProfileFieldTranslation * instead. * diff --git a/core/modules/content_moderation/src/Plugin/Action/ModerationOptOutPublishNode.php b/core/modules/content_moderation/src/Plugin/Action/ModerationOptOutPublishNode.php index e1c5ce9..213e0a5 100644 --- a/core/modules/content_moderation/src/Plugin/Action/ModerationOptOutPublishNode.php +++ b/core/modules/content_moderation/src/Plugin/Action/ModerationOptOutPublishNode.php @@ -9,7 +9,7 @@ /** * Alternate action plugin that can opt-out of modifying moderated entities. * - * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\content_moderation\Plugin\Action\ModerationOptOutPublish * instead. * diff --git a/core/modules/content_moderation/src/Plugin/Action/ModerationOptOutUnpublishNode.php b/core/modules/content_moderation/src/Plugin/Action/ModerationOptOutUnpublishNode.php index d76d3f1..a755eae 100644 --- a/core/modules/content_moderation/src/Plugin/Action/ModerationOptOutUnpublishNode.php +++ b/core/modules/content_moderation/src/Plugin/Action/ModerationOptOutUnpublishNode.php @@ -9,7 +9,7 @@ /** * Alternate action plugin that can opt-out of modifying moderated entities. * - * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\content_moderation\Plugin\Action\ModerationOptOutUnpublish * instead. * diff --git a/core/modules/content_translation/src/ContentTranslationUpdatesManager.php b/core/modules/content_translation/src/ContentTranslationUpdatesManager.php index 9bb7fd0..6da72f4 100644 --- a/core/modules/content_translation/src/ContentTranslationUpdatesManager.php +++ b/core/modules/content_translation/src/ContentTranslationUpdatesManager.php @@ -12,7 +12,7 @@ /** * Provides the logic needed to update field storage definitions when needed. * - * @deprecated in Drupal 8.7.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Definitions are updated automatically now so no replacement is needed. * * @see https://www.drupal.org/node/2973222 diff --git a/core/modules/datetime/datetime.module b/core/modules/datetime/datetime.module index 3d612a0..531deab 100644 --- a/core/modules/datetime/datetime.module +++ b/core/modules/datetime/datetime.module @@ -11,7 +11,7 @@ /** * Defines the timezone that dates should be stored in. * - * @deprecated in Drupal 8.5.x and will be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. Use * \Drupal\datetime\Plugin\Field\FieldType\DateTimeItemInterface::STORAGE_TIMEZONE * instead. * @@ -22,7 +22,7 @@ /** * Defines the format that date and time should be stored in. * - * @deprecated in Drupal 8.5.x and will be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. Use * \Drupal\datetime\Plugin\Field\FieldType\DateTimeItemInterface::DATETIME_STORAGE_FORMAT * instead. * @@ -33,7 +33,7 @@ /** * Defines the format that dates should be stored in. * - * @deprecated in Drupal 8.5.x and will be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. Use * \Drupal\datetime\Plugin\Field\FieldType\DateTimeItemInterface::DATE_STORAGE_FORMAT * instead. * @@ -70,7 +70,7 @@ function datetime_help($route_name, RouteMatchInterface $route_match) { * * @param $date * - * @deprecated in Drupal 8.5.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. Use * \Drupal\Component\Datetime\DateTimePlus::setDefaultDateTime() or * \Drupal\Core\Datetime\DrupalDateTime::setDefaultDateTime() instead. * diff --git a/core/modules/datetime/src/Plugin/migrate/field/d6/DateField.php b/core/modules/datetime/src/Plugin/migrate/field/d6/DateField.php index 244a682..ee829bb 100644 --- a/core/modules/datetime/src/Plugin/migrate/field/d6/DateField.php +++ b/core/modules/datetime/src/Plugin/migrate/field/d6/DateField.php @@ -20,7 +20,7 @@ * weight = 9999999, * ) * - * @deprecated in Drupal 8.4.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\datetime\Plugin\migrate\field\DateField instead. */ class DateField extends FieldPluginBase { diff --git a/core/modules/datetime/src/Tests/DateTestBase.php b/core/modules/datetime/src/Tests/DateTestBase.php index 87a7e96..b820902 100644 --- a/core/modules/datetime/src/Tests/DateTestBase.php +++ b/core/modules/datetime/src/Tests/DateTestBase.php @@ -15,7 +15,7 @@ /** * Provides a base class for testing Datetime field functionality. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\BrowserTestBase instead. */ abstract class DateTestBase extends WebTestBase { diff --git a/core/modules/datetime/src/Tests/Views/DateTimeHandlerTestBase.php b/core/modules/datetime/src/Tests/Views/DateTimeHandlerTestBase.php index a89687a..fa3ab7a 100644 --- a/core/modules/datetime/src/Tests/Views/DateTimeHandlerTestBase.php +++ b/core/modules/datetime/src/Tests/Views/DateTimeHandlerTestBase.php @@ -14,7 +14,7 @@ /** * Base class for testing datetime handlers. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\BrowserTestBase. */ abstract class DateTimeHandlerTestBase extends HandlerTestBase { diff --git a/core/modules/entity_reference/src/ConfigurableEntityReferenceItem.php b/core/modules/entity_reference/src/ConfigurableEntityReferenceItem.php index 6b62705..188270b 100644 --- a/core/modules/entity_reference/src/ConfigurableEntityReferenceItem.php +++ b/core/modules/entity_reference/src/ConfigurableEntityReferenceItem.php @@ -7,7 +7,7 @@ /** * Deprecated. Alternative implementation of the 'entity_reference' field type. * - * @deprecated in Drupal 8.0.x and will be removed in Drupal 9.0.x. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Field\Plugin\Field\FieldType\EntityReferenceItem instead. * * @see \Drupal\Core\Field\Plugin\Field\FieldType\EntityReferenceItem diff --git a/core/modules/entity_reference/src/Plugin/views/display/EntityReference.php b/core/modules/entity_reference/src/Plugin/views/display/EntityReference.php index 5641134..c722bfa 100644 --- a/core/modules/entity_reference/src/Plugin/views/display/EntityReference.php +++ b/core/modules/entity_reference/src/Plugin/views/display/EntityReference.php @@ -7,7 +7,7 @@ /** * Deprecated. The plugin that handles an EntityReference display. * - * @deprecated in Drupal 8.0.x and will be removed in Drupal 9.0.x. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\views\Plugin\views\display\EntityReference instead. * * @see \Drupal\views\Plugin\views\display\EntityReference diff --git a/core/modules/entity_reference/src/Plugin/views/row/EntityReference.php b/core/modules/entity_reference/src/Plugin/views/row/EntityReference.php index a32c063..83fc9ae 100644 --- a/core/modules/entity_reference/src/Plugin/views/row/EntityReference.php +++ b/core/modules/entity_reference/src/Plugin/views/row/EntityReference.php @@ -7,7 +7,7 @@ /** * EntityReference row plugin. * - * @deprecated in Drupal 8.0.x and will be removed in Drupal 9.0.x. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\views\Plugin\views\row\EntityReference instead. * * @see \Drupal\views\Plugin\views\row\EntityReference diff --git a/core/modules/entity_reference/src/Plugin/views/style/EntityReference.php b/core/modules/entity_reference/src/Plugin/views/style/EntityReference.php index 04b8d6f..8164904 100644 --- a/core/modules/entity_reference/src/Plugin/views/style/EntityReference.php +++ b/core/modules/entity_reference/src/Plugin/views/style/EntityReference.php @@ -7,7 +7,7 @@ /** * Deprecated. EntityReference style plugin. * - * @deprecated in Drupal 8.0.x and will be removed in Drupal 9.0.x. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\views\Plugin\views\style\EntityReference instead. * * @see \Drupal\views\Plugin\views\style\EntityReference diff --git a/core/modules/field/src/Tests/Views/FieldTestBase.php b/core/modules/field/src/Tests/Views/FieldTestBase.php index 01a884b..7027788 100644 --- a/core/modules/field/src/Tests/Views/FieldTestBase.php +++ b/core/modules/field/src/Tests/Views/FieldTestBase.php @@ -20,7 +20,7 @@ * - Use relationships between different entity types, for example node and * the node author(user). * - * @deprecated in Drupal 8.6.0. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * \Drupal\Tests\field\Functional\Views\FieldTestBase instead. * * @see https://www.drupal.org/node/2989020 diff --git a/core/modules/field_ui/src/Form/EntityDisplayFormBase.php b/core/modules/field_ui/src/Form/EntityDisplayFormBase.php index 9d45d8e..b25165e 100644 --- a/core/modules/field_ui/src/Form/EntityDisplayFormBase.php +++ b/core/modules/field_ui/src/Form/EntityDisplayFormBase.php @@ -737,7 +737,7 @@ public function multistepAjax($form, FormStateInterface $form_state) { * @see \Drupal\Core\Render\RendererInterface::render() * @see \Drupal\Core\Render\Element\Table::preRenderTable() * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. */ public function tablePreRender($elements) { return FieldUiTable::tablePreRender($elements); @@ -749,7 +749,7 @@ public function tablePreRender($elements) { * Callback for array_reduce() within * \Drupal\field_ui\Form\EntityDisplayFormBase::tablePreRender(). * - * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. */ public function reduceOrder($array, $a) { return FieldUiTable::reduceOrder($array, $a); diff --git a/core/modules/field_ui/src/Tests/FieldUiTestTrait.php b/core/modules/field_ui/src/Tests/FieldUiTestTrait.php index 1c6d5cb..e284e52 100644 --- a/core/modules/field_ui/src/Tests/FieldUiTestTrait.php +++ b/core/modules/field_ui/src/Tests/FieldUiTestTrait.php @@ -7,7 +7,7 @@ /** * Provides common functionality for the Field UI test classes. * - * @deprecated in Drupal 8.7.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\field_ui\Traits\FieldUiTestTrait. See * https://www.drupal.org/node/3001664 */ diff --git a/core/modules/file/file.module b/core/modules/file/file.module index 8eef9c4..93e2b32 100644 --- a/core/modules/file/file.module +++ b/core/modules/file/file.module @@ -79,7 +79,7 @@ function file_field_widget_info_alter(array &$info) { * @return array * An array of file entities, indexed by fid. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\file\Entity\File::loadMultiple(). * * @see https://www.drupal.org/node/2266845 @@ -104,7 +104,7 @@ function file_load_multiple(array $fids = NULL, $reset = FALSE) { * @return \Drupal\file\FileInterface|null * A file entity or NULL if the file was not found. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\file\Entity\File::load(). * * @see https://www.drupal.org/node/2266845 @@ -786,7 +786,7 @@ function file_cron() { * array element contains the file entity if the upload succeeded or FALSE if * there was an error. Function returns NULL if no file was uploaded. * - * @deprecated in Drupal 8.4.x, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * For backwards compatibility use core file upload widgets in forms. * * @internal diff --git a/core/modules/file/src/Plugin/migrate/cckfield/d6/FileField.php b/core/modules/file/src/Plugin/migrate/cckfield/d6/FileField.php index 8dba3b0..c583bc6 100644 --- a/core/modules/file/src/Plugin/migrate/cckfield/d6/FileField.php +++ b/core/modules/file/src/Plugin/migrate/cckfield/d6/FileField.php @@ -16,7 +16,7 @@ * destination_module = "file" * ) * - * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\file\Plugin\migrate\field\d6\FileField instead. * * @see https://www.drupal.org/node/2751897 diff --git a/core/modules/file/src/Plugin/migrate/cckfield/d7/FileField.php b/core/modules/file/src/Plugin/migrate/cckfield/d7/FileField.php index db74e3a..cf745b9 100644 --- a/core/modules/file/src/Plugin/migrate/cckfield/d7/FileField.php +++ b/core/modules/file/src/Plugin/migrate/cckfield/d7/FileField.php @@ -16,7 +16,7 @@ * destination_module = "file" * ) * - * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\file\Plugin\migrate\field\d7\FileField instead. * * @see https://www.drupal.org/node/2751897 diff --git a/core/modules/file/src/Plugin/migrate/cckfield/d7/ImageField.php b/core/modules/file/src/Plugin/migrate/cckfield/d7/ImageField.php index dc3b9cd..d9e8e2c 100644 --- a/core/modules/file/src/Plugin/migrate/cckfield/d7/ImageField.php +++ b/core/modules/file/src/Plugin/migrate/cckfield/d7/ImageField.php @@ -9,7 +9,7 @@ /** * CCK plugin for image fields. * - * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\image\Plugin\migrate\field\d7\ImageField instead. * * @see https://www.drupal.org/node/2936061 diff --git a/core/modules/file/src/Plugin/migrate/field/d6/ImageField.php b/core/modules/file/src/Plugin/migrate/field/d6/ImageField.php index c05d8c3..39471cb 100644 --- a/core/modules/file/src/Plugin/migrate/field/d6/ImageField.php +++ b/core/modules/file/src/Plugin/migrate/field/d6/ImageField.php @@ -9,7 +9,7 @@ /** * Field plugin for image fields. * - * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. Use * \Drupal\image\Plugin\migrate\field\d6\ImageField instead. * * @see https://www.drupal.org/node/2936061 diff --git a/core/modules/file/src/Plugin/migrate/field/d7/ImageField.php b/core/modules/file/src/Plugin/migrate/field/d7/ImageField.php index 29da4d2..837ffd6 100644 --- a/core/modules/file/src/Plugin/migrate/field/d7/ImageField.php +++ b/core/modules/file/src/Plugin/migrate/field/d7/ImageField.php @@ -9,7 +9,7 @@ /** * Field plugin for image fields. * - * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. Use * \Drupal\image\Plugin\migrate\field\d7\ImageField instead. * * @see https://www.drupal.org/node/2936061 diff --git a/core/modules/file/src/Plugin/migrate/process/d6/CckFile.php b/core/modules/file/src/Plugin/migrate/process/d6/CckFile.php index 7ebd157..879dee3 100644 --- a/core/modules/file/src/Plugin/migrate/process/d6/CckFile.php +++ b/core/modules/file/src/Plugin/migrate/process/d6/CckFile.php @@ -9,7 +9,7 @@ * id = "d6_cck_file" * ) * - * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\file\Plugin\migrate\process\d6\FieldFile instead. * * @see https://www.drupal.org/node/2751897 diff --git a/core/modules/hal/src/Normalizer/FileEntityNormalizer.php b/core/modules/hal/src/Normalizer/FileEntityNormalizer.php index e5ae786..ac21901 100644 --- a/core/modules/hal/src/Normalizer/FileEntityNormalizer.php +++ b/core/modules/hal/src/Normalizer/FileEntityNormalizer.php @@ -14,7 +14,7 @@ /** * Converts the Drupal entity object structure to a HAL array structure. * - * @deprecated in Drupal 8.5.0, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. */ class FileEntityNormalizer extends ContentEntityNormalizer { diff --git a/core/modules/hal/tests/src/Functional/EntityResource/Comment/CommentHalJsonTestBase.php b/core/modules/hal/tests/src/Functional/EntityResource/Comment/CommentHalJsonTestBase.php index 648ab6d..d647a82 100644 --- a/core/modules/hal/tests/src/Functional/EntityResource/Comment/CommentHalJsonTestBase.php +++ b/core/modules/hal/tests/src/Functional/EntityResource/Comment/CommentHalJsonTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\comment\Functional\Hal\CommentHalJsonTestBase as CommentHalJsonTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\comment\Functional\Hal\CommentHalJsonTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/hal/tests/src/Functional/EntityResource/Feed/FeedHalJsonTestBase.php b/core/modules/hal/tests/src/Functional/EntityResource/Feed/FeedHalJsonTestBase.php index 364e107..0bf1173 100644 --- a/core/modules/hal/tests/src/Functional/EntityResource/Feed/FeedHalJsonTestBase.php +++ b/core/modules/hal/tests/src/Functional/EntityResource/Feed/FeedHalJsonTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\aggregator\Functional\Hal\FeedHalJsonTestBase as FeedHalJsonTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\aggregator\Functional\Hal\FeedHalJsonTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/hal/tests/src/Functional/EntityResource/Item/ItemHalJsonTestBase.php b/core/modules/hal/tests/src/Functional/EntityResource/Item/ItemHalJsonTestBase.php index 6febd3d..f7f3548 100644 --- a/core/modules/hal/tests/src/Functional/EntityResource/Item/ItemHalJsonTestBase.php +++ b/core/modules/hal/tests/src/Functional/EntityResource/Item/ItemHalJsonTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\aggregator\Functional\Hal\ItemHalJsonTestBase as ItemHalJsonTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\aggregator\Functional\Hal\ItemHalJsonTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/image/image.module b/core/modules/image/image.module index 97a5267..751f6cb 100644 --- a/core/modules/image/image.module +++ b/core/modules/image/image.module @@ -18,7 +18,7 @@ /** * Image style constant for user presets in the database. * - * @deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.1.0 and is removed from drupal:9.0.0. * * @see https://www.drupal.org/node/1820974 */ @@ -27,7 +27,7 @@ /** * Image style constant for user presets that override module-defined presets. * - * @deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.1.0 and is removed from drupal:9.0.0. * * @see https://www.drupal.org/node/1820974 */ @@ -36,7 +36,7 @@ /** * Image style constant for module-defined presets in code. * - * @deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.1.0 and is removed from drupal:9.0.0. * * @see https://www.drupal.org/node/1820974 */ @@ -45,7 +45,7 @@ /** * Image style constant to represent an editable preset. * - * @deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.1.0 and is removed from drupal:9.0.0. * * @see https://www.drupal.org/node/1820974 */ @@ -54,7 +54,7 @@ /** * Image style constant to represent any module-based preset. * - * @deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.1.0 and is removed from drupal:9.0.0. * * @see https://www.drupal.org/node/1820974 */ diff --git a/core/modules/image/src/Entity/ImageStyle.php b/core/modules/image/src/Entity/ImageStyle.php index f043b32..6e62238 100644 --- a/core/modules/image/src/Entity/ImageStyle.php +++ b/core/modules/image/src/Entity/ImageStyle.php @@ -514,7 +514,7 @@ protected function addExtension($path) { * A string containing the name of the scheme, or FALSE if none. For * example, the URI "public://example.txt" would return "public". * - * @deprecated in drupal:8.8.0 and will be removed from drupal:9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\StreamWrapper\StreamWrapperManager::getTarget() instead. * * @see https://www.drupal.org/node/3035273 @@ -537,7 +537,7 @@ protected function fileUriScheme($uri) { * For example, the URI "public://sample/test.txt" would return * "sample/test.txt". * - * @deprecated in drupal:8.8.0 and will be removed from drupal:9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\StreamWrapper\StreamWrapperManager::getUriTarget() instead. * * @see https://www.drupal.org/node/3035273 diff --git a/core/modules/image/src/ImageStyleInterface.php b/core/modules/image/src/ImageStyleInterface.php index 8430fdc..87884d1 100644 --- a/core/modules/image/src/ImageStyleInterface.php +++ b/core/modules/image/src/ImageStyleInterface.php @@ -16,7 +16,7 @@ * The replacement image style ID or NULL if no replacement has been * selected. * - * @deprecated in Drupal 8.0.x, will be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\image\ImageStyleStorageInterface::getReplacementId() instead. * * @see \Drupal\image\ImageStyleStorageInterface::getReplacementId() diff --git a/core/modules/language/language.module b/core/modules/language/language.module index 368248c..9625f93 100644 --- a/core/modules/language/language.module +++ b/core/modules/language/language.module @@ -270,7 +270,7 @@ function language_get_default_langcode($entity_type, $bundle) { /** * Reads language prefixes and uses the langcode if no prefix is set. * - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal::config('language.negotiation')->get('url.prefixes') instead. * * @see https://www.drupal.org/node/2912748 @@ -301,7 +301,7 @@ function language_negotiation_url_prefixes_update() { /** * Reads language domains. * - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal::config('language.negotiation')->get('url.domains') instead. * * @see https://www.drupal.org/node/2912748 diff --git a/core/modules/language/src/Config/LanguageConfigFactoryOverrideInterface.php b/core/modules/language/src/Config/LanguageConfigFactoryOverrideInterface.php index 56dfc47..5a58bee 100644 --- a/core/modules/language/src/Config/LanguageConfigFactoryOverrideInterface.php +++ b/core/modules/language/src/Config/LanguageConfigFactoryOverrideInterface.php @@ -37,7 +37,7 @@ public function setLanguage(LanguageInterface $language = NULL); * * @return $this * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. This + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. This * method has been replaced by injecting the default language into the * constructor. */ diff --git a/core/modules/layout_builder/src/SectionStorageInterface.php b/core/modules/layout_builder/src/SectionStorageInterface.php index 41891bb..b555e9a 100644 --- a/core/modules/layout_builder/src/SectionStorageInterface.php +++ b/core/modules/layout_builder/src/SectionStorageInterface.php @@ -47,7 +47,7 @@ public function getStorageType(); * @internal * This should only be called during section storage instantiation. * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. The + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. The * section list should be derived from context. See * https://www.drupal.org/node/3016262. */ @@ -105,7 +105,7 @@ public function getLayoutBuilderUrl($rel = 'view'); * @internal * This should only be called during section storage instantiation. * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * \Drupal\layout_builder\SectionStorageInterface::deriveContextsFromRoute() * should be used instead. See https://www.drupal.org/node/3016262. */ diff --git a/core/modules/link/src/Plugin/migrate/cckfield/LinkField.php b/core/modules/link/src/Plugin/migrate/cckfield/LinkField.php index 1a823f5..3ee4b65 100644 --- a/core/modules/link/src/Plugin/migrate/cckfield/LinkField.php +++ b/core/modules/link/src/Plugin/migrate/cckfield/LinkField.php @@ -18,7 +18,7 @@ * destination_module = "link" * ) * - * @deprecated in Drupal 8.3.x and will be removed in Drupal 9.0.x. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\link\Plugin\migrate\field\d6\LinkField instead. * * @see https://www.drupal.org/node/2751897 diff --git a/core/modules/link/src/Plugin/migrate/cckfield/d7/LinkField.php b/core/modules/link/src/Plugin/migrate/cckfield/d7/LinkField.php index a796409..5e13b95 100644 --- a/core/modules/link/src/Plugin/migrate/cckfield/d7/LinkField.php +++ b/core/modules/link/src/Plugin/migrate/cckfield/d7/LinkField.php @@ -22,7 +22,7 @@ * plugin with the exception that the plugin ID "link_field" is used in the * field type map. * - * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\link\Plugin\migrate\field\d7\LinkField instead. * * @see https://www.drupal.org/node/2751897 diff --git a/core/modules/link/src/Plugin/migrate/process/d6/CckLink.php b/core/modules/link/src/Plugin/migrate/process/d6/CckLink.php index d9dc700..84cac57 100644 --- a/core/modules/link/src/Plugin/migrate/process/d6/CckLink.php +++ b/core/modules/link/src/Plugin/migrate/process/d6/CckLink.php @@ -11,7 +11,7 @@ * id = "d6_cck_link" * ) * - * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\link\Plugin\migrate\process\FieldLink instead. */ class CckLink extends FieldLink {} diff --git a/core/modules/link/src/Plugin/migrate/process/d6/FieldLink.php b/core/modules/link/src/Plugin/migrate/process/d6/FieldLink.php index 19c5e35..0a27254 100644 --- a/core/modules/link/src/Plugin/migrate/process/d6/FieldLink.php +++ b/core/modules/link/src/Plugin/migrate/process/d6/FieldLink.php @@ -11,7 +11,7 @@ * id = "d6_field_link" * ) * - * @deprecated in Drupal 8.4.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\link\Plugin\migrate\process\FieldLink instead. */ class FieldLink extends GeneralPurposeFieldLink {} diff --git a/core/modules/media/src/Form/MediaDeleteMultipleConfirmForm.php b/core/modules/media/src/Form/MediaDeleteMultipleConfirmForm.php index 6437753..8952b78 100644 --- a/core/modules/media/src/Form/MediaDeleteMultipleConfirmForm.php +++ b/core/modules/media/src/Form/MediaDeleteMultipleConfirmForm.php @@ -13,7 +13,7 @@ /** * Provides a confirmation form to delete multiple media items at once. * - * @deprecated in Drupal 8.6.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. * This route is not used in Drupal core. As an internal API, it may also be * removed in a minor release. If you are using it, copy the class * and the related "entity.media.multiple_delete_confirm" route to your diff --git a/core/modules/media/tests/src/Functional/MediaFunctionalTestCreateMediaTypeTrait.php b/core/modules/media/tests/src/Functional/MediaFunctionalTestCreateMediaTypeTrait.php index 265671b..047075a 100644 --- a/core/modules/media/tests/src/Functional/MediaFunctionalTestCreateMediaTypeTrait.php +++ b/core/modules/media/tests/src/Functional/MediaFunctionalTestCreateMediaTypeTrait.php @@ -9,7 +9,7 @@ /** * Trait with helpers for Media functional tests. * - * @deprecated in Drupal 8.6.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * \Drupal\Tests\media\Traits\MediaTypeCreationTrait instead. * * @see https://www.drupal.org/node/2981614 diff --git a/core/modules/menu_link_content/src/Plugin/migrate/process/d6/LinkUri.php b/core/modules/menu_link_content/src/Plugin/migrate/process/d6/LinkUri.php index 7467c72..0d9d66d 100644 --- a/core/modules/menu_link_content/src/Plugin/migrate/process/d6/LinkUri.php +++ b/core/modules/menu_link_content/src/Plugin/migrate/process/d6/LinkUri.php @@ -7,7 +7,7 @@ /** * Processes a link path into an 'internal:' or 'entity:' URI. * - * @deprecated in Drupal 8.2.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.2.0 and is removed from drupal:9.0.0. Use * \Drupal\menu_link_content\Plugin\migrate\process\LinkUri instead. * * @see https://www.drupal.org/node/2761389 diff --git a/core/modules/menu_link_content/src/Plugin/migrate/process/d7/InternalUri.php b/core/modules/menu_link_content/src/Plugin/migrate/process/d7/InternalUri.php index 2cb8aaf..d417a98 100644 --- a/core/modules/menu_link_content/src/Plugin/migrate/process/d7/InternalUri.php +++ b/core/modules/menu_link_content/src/Plugin/migrate/process/d7/InternalUri.php @@ -7,7 +7,7 @@ /** * Processes an internal uri into an 'internal:' or 'entity:' URI. * - * @deprecated in Drupal 8.2.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.2.0 and is removed from drupal:9.0.0. Use * \Drupal\menu_link_content\Plugin\migrate\process\LinkUri instead. * * @see https://www.drupal.org/node/2761389 diff --git a/core/modules/menu_ui/menu_ui.module b/core/modules/menu_ui/menu_ui.module index a83dd82..dbcb2cf 100644 --- a/core/modules/menu_ui/menu_ui.module +++ b/core/modules/menu_ui/menu_ui.module @@ -24,7 +24,7 @@ /** * Maximum length of menu name as entered by the user. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Config\Entity\ConfigEntityStorage::MAX_ID_LENGTH because the * menu name is a configuration entity ID. * diff --git a/core/modules/menu_ui/src/Tests/MenuWebTestBase.php b/core/modules/menu_ui/src/Tests/MenuWebTestBase.php index 136b246..3a2584f 100644 --- a/core/modules/menu_ui/src/Tests/MenuWebTestBase.php +++ b/core/modules/menu_ui/src/Tests/MenuWebTestBase.php @@ -9,7 +9,7 @@ /** * Base class for menu web tests. * - * @deprecated in Drupal 8.5.x, will be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. Use * \Drupal\Tests\menu_ui\Traits\MenuUiTrait methods, instead. * * @see https://www.drupal.org/node/2917910 diff --git a/core/modules/migrate/src/Plugin/MigrateIdMapInterface.php b/core/modules/migrate/src/Plugin/MigrateIdMapInterface.php index 3482e4d..f39cffb 100644 --- a/core/modules/migrate/src/Plugin/MigrateIdMapInterface.php +++ b/core/modules/migrate/src/Plugin/MigrateIdMapInterface.php @@ -210,7 +210,7 @@ public function lookupSourceId(array $destination_id_values); * @return array * The destination identifier values of the record, or empty on failure. * - * @deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.1.0 and is removed from drupal:9.0.0. Use * lookupDestinationIds() instead. * * @see https://www.drupal.org/node/2725809 diff --git a/core/modules/migrate/src/Plugin/Migration.php b/core/modules/migrate/src/Plugin/Migration.php index aa0c94c..e02358e 100644 --- a/core/modules/migrate/src/Plugin/Migration.php +++ b/core/modules/migrate/src/Plugin/Migration.php @@ -321,7 +321,7 @@ public function label() { * @return mixed * The value for that property, or NULL if the property does not exist. * - * @deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.1.0 and is removed from drupal:9.0.0. Use * more specific getters instead. * * @see https://www.drupal.org/node/2873795 diff --git a/core/modules/migrate/src/Plugin/migrate/process/DedupeBase.php b/core/modules/migrate/src/Plugin/migrate/process/DedupeBase.php index 90801eb..2a0f889 100644 --- a/core/modules/migrate/src/Plugin/migrate/process/DedupeBase.php +++ b/core/modules/migrate/src/Plugin/migrate/process/DedupeBase.php @@ -15,7 +15,7 @@ * * @link https://www.drupal.org/node/2345929 Online handbook documentation for dedupebase process plugin @endlink * - * @deprecated in Drupal 8.4.x and will be removed in Drupal 9.0.x. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\migrate\Plugin\migrate\process\MakeUniqueBase instead. * * @see https://www.drupal.org/node/2873762 diff --git a/core/modules/migrate/src/Plugin/migrate/process/DedupeEntity.php b/core/modules/migrate/src/Plugin/migrate/process/DedupeEntity.php index e635918..67d7cbf 100644 --- a/core/modules/migrate/src/Plugin/migrate/process/DedupeEntity.php +++ b/core/modules/migrate/src/Plugin/migrate/process/DedupeEntity.php @@ -17,7 +17,7 @@ * id = "dedupe_entity" * ) * - * @deprecated in Drupal 8.4.x and will be removed in Drupal 9.0.x. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\migrate\Plugin\migrate\process\MakeUniqueEntityField instead. * * @see https://www.drupal.org/node/2873762 diff --git a/core/modules/migrate/src/Plugin/migrate/process/Iterator.php b/core/modules/migrate/src/Plugin/migrate/process/Iterator.php index 4878ad4..637a9fe 100644 --- a/core/modules/migrate/src/Plugin/migrate/process/Iterator.php +++ b/core/modules/migrate/src/Plugin/migrate/process/Iterator.php @@ -7,7 +7,7 @@ /** * Iterates and processes an associative array. * - * @deprecated in Drupal 8.4.x and will be removed in Drupal 9.0.x. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\migrate\Plugin\migrate\process\SubProcess instead. * * @see https://www.drupal.org/node/2880427 diff --git a/core/modules/migrate/src/Plugin/migrate/process/Migration.php b/core/modules/migrate/src/Plugin/migrate/process/Migration.php index 8cae1dd..bee3863 100644 --- a/core/modules/migrate/src/Plugin/migrate/process/Migration.php +++ b/core/modules/migrate/src/Plugin/migrate/process/Migration.php @@ -13,7 +13,7 @@ * id = "migration" * ) * - * @deprecated in Drupal 8.3.x and will be removed in Drupal 9.0.x. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\migrate\Plugin\migrate\process\MigrationLookup instead. */ class Migration extends MigrationLookup {} diff --git a/core/modules/migrate/tests/src/Kernel/NodeCommentCombinationTrait.php b/core/modules/migrate/tests/src/Kernel/NodeCommentCombinationTrait.php index e2fcd9e..7bdac26 100644 --- a/core/modules/migrate/tests/src/Kernel/NodeCommentCombinationTrait.php +++ b/core/modules/migrate/tests/src/Kernel/NodeCommentCombinationTrait.php @@ -3,7 +3,7 @@ namespace Drupal\Tests\migrate\Kernel; /** - * @deprecated in Drupal 8.7.x, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase::migrateFields() * instead. */ diff --git a/core/modules/migrate/tests/src/Unit/MigrateSqlSourceTestCase.php b/core/modules/migrate/tests/src/Unit/MigrateSqlSourceTestCase.php index a1ee4b4..f3aec50 100644 --- a/core/modules/migrate/tests/src/Unit/MigrateSqlSourceTestCase.php +++ b/core/modules/migrate/tests/src/Unit/MigrateSqlSourceTestCase.php @@ -11,7 +11,7 @@ /** * Base class for Migrate module source unit tests. * - * @deprecated in Drupal 8.2.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.2.0 and is removed from drupal:9.0.0. Use * \Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase instead. */ abstract class MigrateSqlSourceTestCase extends MigrateTestCase { diff --git a/core/modules/migrate_drupal/src/Annotation/MigrateCckField.php b/core/modules/migrate_drupal/src/Annotation/MigrateCckField.php index 2055820..5f6033a 100644 --- a/core/modules/migrate_drupal/src/Annotation/MigrateCckField.php +++ b/core/modules/migrate_drupal/src/Annotation/MigrateCckField.php @@ -7,7 +7,7 @@ /** * Deprecated: Defines a cckfield plugin annotation object. * - * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\migrate_drupal\Annotation\MigrateField instead. * * Plugin Namespace: Plugin\migrate\cckfield diff --git a/core/modules/migrate_drupal/src/MigrationCreationTrait.php b/core/modules/migrate_drupal/src/MigrationCreationTrait.php index 7894e91..8296df5 100644 --- a/core/modules/migrate_drupal/src/MigrationCreationTrait.php +++ b/core/modules/migrate_drupal/src/MigrationCreationTrait.php @@ -3,7 +3,7 @@ namespace Drupal\migrate_drupal; /** - * @deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.1.0 and is removed from drupal:9.0.0. Use * \Drupal\migrate_drupal\MigrationConfigurationTrait instead. * * @see https://www.drupal.org/node/2873794 diff --git a/core/modules/migrate_drupal/src/Plugin/MigrateCckFieldInterface.php b/core/modules/migrate_drupal/src/Plugin/MigrateCckFieldInterface.php index 6dceeab..2bebe92 100644 --- a/core/modules/migrate_drupal/src/Plugin/MigrateCckFieldInterface.php +++ b/core/modules/migrate_drupal/src/Plugin/MigrateCckFieldInterface.php @@ -9,7 +9,7 @@ /** * Provides an interface for all CCK field type plugins. * - * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\migrate_drupal\Annotation\MigrateField instead. * * @see https://www.drupal.org/node/2751897 diff --git a/core/modules/migrate_drupal/src/Plugin/MigrateCckFieldPluginManager.php b/core/modules/migrate_drupal/src/Plugin/MigrateCckFieldPluginManager.php index 515e71e..222f882 100644 --- a/core/modules/migrate_drupal/src/Plugin/MigrateCckFieldPluginManager.php +++ b/core/modules/migrate_drupal/src/Plugin/MigrateCckFieldPluginManager.php @@ -7,7 +7,7 @@ /** * Deprecated: Plugin manager for migrate field plugins. * - * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\migrate_drupal\Plugin\MigrateFieldPluginManager instead. * * @see https://www.drupal.org/node/2751897 diff --git a/core/modules/migrate_drupal/src/Plugin/MigrateCckFieldPluginManagerInterface.php b/core/modules/migrate_drupal/src/Plugin/MigrateCckFieldPluginManagerInterface.php index 8eba728..9a2abf0 100644 --- a/core/modules/migrate_drupal/src/Plugin/MigrateCckFieldPluginManagerInterface.php +++ b/core/modules/migrate_drupal/src/Plugin/MigrateCckFieldPluginManagerInterface.php @@ -7,7 +7,7 @@ /** * Provides an interface for cck field plugin manager. * - * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\migrate_drupal\Plugin\MigrateFieldPluginManagerInterface instead. * * @see https://www.drupal.org/node/2751897 diff --git a/core/modules/migrate_drupal/src/Plugin/migrate/CckMigration.php b/core/modules/migrate_drupal/src/Plugin/migrate/CckMigration.php index d608fb0..778f784 100644 --- a/core/modules/migrate_drupal/src/Plugin/migrate/CckMigration.php +++ b/core/modules/migrate_drupal/src/Plugin/migrate/CckMigration.php @@ -7,7 +7,7 @@ /** * Migration plugin class for migrations dealing with CCK field values. * - * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\migrate_drupal\Plugin\migrate\FieldMigration instead. * * @see https://www.drupal.org/node/2751897 diff --git a/core/modules/migrate_drupal/src/Plugin/migrate/FieldMigration.php b/core/modules/migrate_drupal/src/Plugin/migrate/FieldMigration.php index f84bdb4..0bde6f8 100644 --- a/core/modules/migrate_drupal/src/Plugin/migrate/FieldMigration.php +++ b/core/modules/migrate_drupal/src/Plugin/migrate/FieldMigration.php @@ -23,7 +23,7 @@ class FieldMigration extends Migration implements ContainerFactoryPluginInterfac * fallback to the old 'cck_plugin_method'. * * @const string - * @deprecated This constant is deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use the migrate_drupal.field_discovery service instead. See https://www.drupal.org/node/3006076. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use the migrate_drupal.field_discovery service instead. See https://www.drupal.org/node/3006076. */ const PLUGIN_METHOD = 'field_plugin_method'; diff --git a/core/modules/migrate_drupal/src/Plugin/migrate/cckfield/CckFieldPluginBase.php b/core/modules/migrate_drupal/src/Plugin/migrate/cckfield/CckFieldPluginBase.php index 80ad6fa..34520c7 100644 --- a/core/modules/migrate_drupal/src/Plugin/migrate/cckfield/CckFieldPluginBase.php +++ b/core/modules/migrate_drupal/src/Plugin/migrate/cckfield/CckFieldPluginBase.php @@ -11,7 +11,7 @@ /** * The base class for all field plugins. * - * @deprecated in Drupal 8.4.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\migrate_drupal\Plugin\migrate\field\FieldPluginBase instead. * * @see https://www.drupal.org/node/2751897 diff --git a/core/modules/migrate_drupal/src/Plugin/migrate/destination/EntityFieldStorageConfig.php b/core/modules/migrate_drupal/src/Plugin/migrate/destination/EntityFieldStorageConfig.php index cdc63de..9fe4b1a 100644 --- a/core/modules/migrate_drupal/src/Plugin/migrate/destination/EntityFieldStorageConfig.php +++ b/core/modules/migrate_drupal/src/Plugin/migrate/destination/EntityFieldStorageConfig.php @@ -17,7 +17,7 @@ * id = "md_entity:field_storage_config" * ) * - * @deprecated in Drupal 8.2.x and will be removed in Drupal 9.0.x. Use + * @deprecated in drupal:8.2.0 and is removed from drupal:9.0.0. Use * \Drupal\migrate\Plugin\migrate\destination\EntityFieldStorageConfig * instead. * diff --git a/core/modules/migrate_drupal/src/Plugin/migrate/field/FieldPluginBase.php b/core/modules/migrate_drupal/src/Plugin/migrate/field/FieldPluginBase.php index 7827470..a32e08c 100644 --- a/core/modules/migrate_drupal/src/Plugin/migrate/field/FieldPluginBase.php +++ b/core/modules/migrate_drupal/src/Plugin/migrate/field/FieldPluginBase.php @@ -22,7 +22,7 @@ /** * Alters the migration for field definitions. * - * @deprecated in Drupal 8.6.0, to be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * alterFieldMigration() instead. * * @see https://www.drupal.org/node/2944598 @@ -44,7 +44,7 @@ public function alterFieldMigration(MigrationInterface $migration) { /** * Alert field instance migration. * - * @deprecated in Drupal 8.6.0, to be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * alterFieldInstanceMigration() instead. * * @see https://www.drupal.org/node/2944598 @@ -65,7 +65,7 @@ public function alterFieldInstanceMigration(MigrationInterface $migration) { /** * Alter field widget migration. * - * @deprecated in Drupal 8.6.0, to be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * alterFieldWidgetMigration() instead. * * @see https://www.drupal.org/node/2944598 @@ -121,7 +121,7 @@ public function getFieldWidgetMap() { /** * Alter field formatter migration. * - * @deprecated in Drupal 8.6.0, to be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * alterFieldFormatterMigration() instead. * * @see https://www.drupal.org/node/2944598 @@ -150,7 +150,7 @@ public function alterFieldFormatterMigration(MigrationInterface $migration) { /** * Defines the process pipeline for field values. * - * @deprecated in Drupal 8.6.0, to be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * defineValueProcessPipeline() instead. * * @see https://www.drupal.org/node/2944598 diff --git a/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/i18nVariable.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/i18nVariable.php index f1c338a..140399c 100644 --- a/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/i18nVariable.php +++ b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/i18nVariable.php @@ -12,7 +12,7 @@ * source_module = "system", * ) * - * @deprecated in Drupal 8.4.x and will be removed in Drupal 9.0.x. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\migrate_drupal\Plugin\migrate\source\d6\VariableTranslation instead. * * @see https://www.drupal.org/node/2898649 diff --git a/core/modules/migrate_drupal_ui/src/Tests/MigrateUpgradeTestBase.php b/core/modules/migrate_drupal_ui/src/Tests/MigrateUpgradeTestBase.php index 35ea71d..1597572 100644 --- a/core/modules/migrate_drupal_ui/src/Tests/MigrateUpgradeTestBase.php +++ b/core/modules/migrate_drupal_ui/src/Tests/MigrateUpgradeTestBase.php @@ -12,7 +12,7 @@ /** * Provides a base class for testing migration upgrades in the UI. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\Tests\migrate_drupal_ui\Functional\MigrateUpgradeTestBase instead. */ abstract class MigrateUpgradeTestBase extends WebTestBase { diff --git a/core/modules/node/node.module b/core/modules/node/node.module index 4560a7c..ed9b987 100644 --- a/core/modules/node/node.module +++ b/core/modules/node/node.module @@ -271,7 +271,7 @@ function node_mark($nid, $timestamp) { * @return \Drupal\node\NodeTypeInterface[] * An array of node type entities, keyed by ID. * - * @deprecated in Drupal 8.x, will be removed before Drupal 9.0. + * @deprecated in drupal:8.0 and is removed from drupal:9.0. * Use \Drupal\node\Entity\NodeType::loadMultiple(). * * @see \Drupal\node\Entity\NodeType::load() @@ -333,7 +333,7 @@ function node_type_get_description(NodeTypeInterface $node_type) { * @return \Drupal\node\NodeTypeInterface * A node type object or NULL if $name does not exist. * - * @deprecated iin Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\node\Entity\NodeType::load(). * * @see https://www.drupal.org/node/2266845 @@ -450,7 +450,7 @@ function node_type_update_nodes($old_id, $new_id) { * @return \Drupal\node\NodeInterface[] * An array of node entities indexed by nid. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\node\Entity\Node::loadMultiple(). * * @see https://www.drupal.org/node/2266845 @@ -475,7 +475,7 @@ function node_load_multiple(array $nids = NULL, $reset = FALSE) { * @return \Drupal\node\NodeInterface|null * A fully-populated node entity, or NULL if the node is not found. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\node\Entity\Node::load(). * * @see https://www.drupal.org/node/2266845 @@ -857,7 +857,7 @@ function node_get_recent($number = 10) { * @return array * An array as expected by \Drupal\Core\Render\RendererInterface::render(). * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. * Use \Drupal::entityTypeManager()->getViewBuilder('node')->view() instead. * * @see https://www.drupal.org/node/3033656 @@ -884,7 +884,7 @@ function node_view(NodeInterface $node, $view_mode = 'full', $langcode = NULL) { * An array in the format expected by * \Drupal\Core\Render\RendererInterface::render(). * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal::entityTypeManager()->getViewBuilder('node')->viewMultiple() * instead. * diff --git a/core/modules/node/src/NodeAccessControlHandlerInterface.php b/core/modules/node/src/NodeAccessControlHandlerInterface.php index 7d407c1..47cdb3d 100644 --- a/core/modules/node/src/NodeAccessControlHandlerInterface.php +++ b/core/modules/node/src/NodeAccessControlHandlerInterface.php @@ -44,7 +44,7 @@ public function acquireGrants(NodeInterface $node); * purposes, and assumes the caller has already performed a mass delete of * some form. Defaults to TRUE. * - * @deprecated in Drupal 8.x, will be removed before Drupal 9.0. + * @deprecated in drupal:8.0 and is removed from drupal:9.0. * Use \Drupal\node\NodeAccessControlHandlerInterface::acquireGrants(). */ public function writeGrants(NodeInterface $node, $delete = TRUE); diff --git a/core/modules/node/src/NodeForm.php b/core/modules/node/src/NodeForm.php index f538084..8497f59 100644 --- a/core/modules/node/src/NodeForm.php +++ b/core/modules/node/src/NodeForm.php @@ -223,7 +223,7 @@ public function form(array $form, FormStateInterface $form_state) { * * @see \Drupal\node\NodeForm::form() * - * @deprecated in Drupal 8.4.x, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * The "Publish" button was removed. */ public function updateStatus($entity_type_id, NodeInterface $node, array $form, FormStateInterface $form_state) { diff --git a/core/modules/node/src/NodeInterface.php b/core/modules/node/src/NodeInterface.php index 87b6892..9fc238d 100644 --- a/core/modules/node/src/NodeInterface.php +++ b/core/modules/node/src/NodeInterface.php @@ -152,7 +152,7 @@ public function setRevisionCreationTime($timestamp); * @return \Drupal\user\UserInterface * The user entity for the revision author. * - * @deprecated in Drupal 8.2.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.2.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Entity\RevisionLogInterface::getRevisionUser() instead. */ public function getRevisionAuthor(); @@ -166,7 +166,7 @@ public function getRevisionAuthor(); * @return \Drupal\node\NodeInterface * The called node entity. * - * @deprecated in Drupal 8.2.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.2.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Entity\RevisionLogInterface::setRevisionUserId() instead. */ public function setRevisionAuthorId($uid); diff --git a/core/modules/node/src/NodeTypeInterface.php b/core/modules/node/src/NodeTypeInterface.php index df4831e..e735e3a 100644 --- a/core/modules/node/src/NodeTypeInterface.php +++ b/core/modules/node/src/NodeTypeInterface.php @@ -24,7 +24,7 @@ public function isLocked(); * @return bool * TRUE if a new revision should be created by default. * - * @deprecated in Drupal 8.3.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * Drupal\Core\Entity\RevisionableEntityBundleInterface::shouldCreateNewRevision() * instead. */ diff --git a/core/modules/node/src/Plugin/Action/DeleteNode.php b/core/modules/node/src/Plugin/Action/DeleteNode.php index 64fbe12..0213ccf 100644 --- a/core/modules/node/src/Plugin/Action/DeleteNode.php +++ b/core/modules/node/src/Plugin/Action/DeleteNode.php @@ -10,7 +10,7 @@ /** * Redirects to a node deletion form. * - * @deprecated in Drupal 8.6.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Action\Plugin\Action\DeleteAction instead. * * @see \Drupal\Core\Action\Plugin\Action\DeleteAction diff --git a/core/modules/node/src/Plugin/Action/PublishNode.php b/core/modules/node/src/Plugin/Action/PublishNode.php index adecc7d..6e52229 100644 --- a/core/modules/node/src/Plugin/Action/PublishNode.php +++ b/core/modules/node/src/Plugin/Action/PublishNode.php @@ -8,7 +8,7 @@ /** * Publishes a node. * - * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Action\Plugin\Action\PublishAction instead. * * @see \Drupal\Core\Action\Plugin\Action\PublishAction diff --git a/core/modules/node/src/Plugin/Action/SaveNode.php b/core/modules/node/src/Plugin/Action/SaveNode.php index d9eea0c..f321c91 100644 --- a/core/modules/node/src/Plugin/Action/SaveNode.php +++ b/core/modules/node/src/Plugin/Action/SaveNode.php @@ -9,7 +9,7 @@ /** * Provides an action that can save any entity. * - * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Action\Plugin\Action\SaveAction instead. * * @see \Drupal\Core\Action\Plugin\Action\SaveAction diff --git a/core/modules/node/src/Plugin/Action/UnpublishNode.php b/core/modules/node/src/Plugin/Action/UnpublishNode.php index bb188d7..7f4cdd8 100644 --- a/core/modules/node/src/Plugin/Action/UnpublishNode.php +++ b/core/modules/node/src/Plugin/Action/UnpublishNode.php @@ -8,7 +8,7 @@ /** * Unpublishes a node. * - * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Action\Plugin\Action\UnpublishAction instead. * * @see \Drupal\Core\Action\Plugin\Action\UnpublishAction diff --git a/core/modules/node/src/Plugin/migrate/source/d6/Node.php b/core/modules/node/src/Plugin/migrate/source/d6/Node.php index 215a73c..2d43c3a 100644 --- a/core/modules/node/src/Plugin/migrate/source/d6/Node.php +++ b/core/modules/node/src/Plugin/migrate/source/d6/Node.php @@ -295,7 +295,7 @@ protected function getFieldData(array $field, Row $node) { /** * Retrieves raw field data for a node. * - * @deprecated in Drupal 8.2.x, to be removed in Drupal 9.0.x. Use + * @deprecated in drupal:8.2.0 and is removed from drupal:9.0.0. Use * getFieldData() instead. * * @param array $field diff --git a/core/modules/node/src/Plugin/views/field/Path.php b/core/modules/node/src/Plugin/views/field/Path.php index d64d250..75b8760 100644 --- a/core/modules/node/src/Plugin/views/field/Path.php +++ b/core/modules/node/src/Plugin/views/field/Path.php @@ -18,7 +18,7 @@ * * @ViewsField("node_path") * - * @deprecated in Drupal 8.5.x, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use @ViewsField("entity_link") with 'output_url_as_text' set. */ class Path extends FieldPluginBase { diff --git a/core/modules/quickedit/quickedit.module b/core/modules/quickedit/quickedit.module index a601f06..e6519e3 100644 --- a/core/modules/quickedit/quickedit.module +++ b/core/modules/quickedit/quickedit.module @@ -176,7 +176,7 @@ function quickedit_entity_view_alter(&$build, EntityInterface $entity, EntityVie * @return bool * TRUE if the loaded entity is the latest revision, FALSE otherwise. * - * @deprecated in Drupal 8.5.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. Use * \Drupal\Core\Entity\RevisionableInterface::isLatestRevision() instead. * As internal API, _quickedit_entity_is_latest_revision() may also be removed * in a minor release. diff --git a/core/modules/quickedit/src/Access/EditEntityFieldAccessCheck.php b/core/modules/quickedit/src/Access/EditEntityFieldAccessCheck.php index f937908..f965d9a 100644 --- a/core/modules/quickedit/src/Access/EditEntityFieldAccessCheck.php +++ b/core/modules/quickedit/src/Access/EditEntityFieldAccessCheck.php @@ -3,7 +3,7 @@ namespace Drupal\quickedit\Access; /** - * @deprecated in Drupal 8.4.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. */ class EditEntityFieldAccessCheck extends QuickEditEntityFieldAccessCheck { diff --git a/core/modules/quickedit/src/Access/EditEntityFieldAccessCheckInterface.php b/core/modules/quickedit/src/Access/EditEntityFieldAccessCheckInterface.php index cfdb32d..db6407f 100644 --- a/core/modules/quickedit/src/Access/EditEntityFieldAccessCheckInterface.php +++ b/core/modules/quickedit/src/Access/EditEntityFieldAccessCheckInterface.php @@ -3,7 +3,7 @@ namespace Drupal\quickedit\Access; /** - * @deprecated in Drupal 8.4.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. */ interface EditEntityFieldAccessCheckInterface extends QuickEditEntityFieldAccessCheckInterface { diff --git a/core/modules/quickedit/tests/modules/src/MockEditEntityFieldAccessCheck.php b/core/modules/quickedit/tests/modules/src/MockEditEntityFieldAccessCheck.php index 7596aa8..6e03bff 100644 --- a/core/modules/quickedit/tests/modules/src/MockEditEntityFieldAccessCheck.php +++ b/core/modules/quickedit/tests/modules/src/MockEditEntityFieldAccessCheck.php @@ -3,7 +3,7 @@ namespace Drupal\quickedit_test; /** - * @deprecated in Drupal 8.4.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. */ class MockEditEntityFieldAccessCheck extends MockQuickEditEntityFieldAccessCheck { diff --git a/core/modules/responsive_image/responsive_image.module b/core/modules/responsive_image/responsive_image.module index e1a271b..2a05d00 100644 --- a/core/modules/responsive_image/responsive_image.module +++ b/core/modules/responsive_image/responsive_image.module @@ -18,7 +18,7 @@ /** * The machine name for the empty image breakpoint image style option. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * Drupal\responsive_image\ResponsiveImageStyleInterface::EMPTY_IMAGE * instead. * @@ -29,7 +29,7 @@ /** * The machine name for the original image breakpoint image style option. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\responsive_image\ResponsiveImageStyleInterface::ORIGINAL_IMAGE * instead. * diff --git a/core/modules/rest/rest.api.php b/core/modules/rest/rest.api.php index 0890e3b..65dc8fa 100644 --- a/core/modules/rest/rest.api.php +++ b/core/modules/rest/rest.api.php @@ -31,7 +31,7 @@ function hook_rest_resource_alter(&$definitions) { /** * Alter the REST type URI. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * hook_serialization_type_uri_alter() instead. This exists solely for BC. * * @see https://www.drupal.org/node/2830467 @@ -59,7 +59,7 @@ function hook_rest_type_uri_alter(&$uri, $context = []) { /** * Alter the REST relation URI. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * hook_serialization_relation_uri_alter() instead. This exists solely for BC. * * @see https://www.drupal.org/node/2830467 diff --git a/core/modules/rest/src/LinkManager/ConfigurableLinkManagerInterface.php b/core/modules/rest/src/LinkManager/ConfigurableLinkManagerInterface.php index e521459..483c019 100644 --- a/core/modules/rest/src/LinkManager/ConfigurableLinkManagerInterface.php +++ b/core/modules/rest/src/LinkManager/ConfigurableLinkManagerInterface.php @@ -5,7 +5,7 @@ use Drupal\hal\LinkManager\ConfigurableLinkManagerInterface as MovedConfigurableLinkManagerInterface; /** - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. This has + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. This has * been moved to the hal module. This exists solely for BC. * * @see https://www.drupal.org/node/2830467 diff --git a/core/modules/rest/src/LinkManager/LinkManager.php b/core/modules/rest/src/LinkManager/LinkManager.php index 4586c62..46c4c88 100644 --- a/core/modules/rest/src/LinkManager/LinkManager.php +++ b/core/modules/rest/src/LinkManager/LinkManager.php @@ -5,7 +5,7 @@ use Drupal\hal\LinkManager\LinkManager as MovedLinkManager; /** - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. This has + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. This has * been moved to the hal module. This exists solely for BC. * * @see https://www.drupal.org/node/2830467 diff --git a/core/modules/rest/src/LinkManager/LinkManagerBase.php b/core/modules/rest/src/LinkManager/LinkManagerBase.php index 85eb7b7..334a6f4 100644 --- a/core/modules/rest/src/LinkManager/LinkManagerBase.php +++ b/core/modules/rest/src/LinkManager/LinkManagerBase.php @@ -5,7 +5,7 @@ use Drupal\hal\LinkManager\LinkManagerBase as MovedLinkManagerBase; /** - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. This has + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. This has * been moved to the hal module. This exists solely for BC. * * @see https://www.drupal.org/node/2830467 diff --git a/core/modules/rest/src/LinkManager/LinkManagerInterface.php b/core/modules/rest/src/LinkManager/LinkManagerInterface.php index 9f5d2f2..14678d5 100644 --- a/core/modules/rest/src/LinkManager/LinkManagerInterface.php +++ b/core/modules/rest/src/LinkManager/LinkManagerInterface.php @@ -5,7 +5,7 @@ use Drupal\hal\LinkManager\LinkManagerInterface as MovedLinkManagerInterface; /** - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. This has + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. This has * been moved to the hal module. This exists solely for BC. * * @see https://www.drupal.org/node/2830467 diff --git a/core/modules/rest/src/LinkManager/RelationLinkManager.php b/core/modules/rest/src/LinkManager/RelationLinkManager.php index 6690e21..ac1cc1b 100644 --- a/core/modules/rest/src/LinkManager/RelationLinkManager.php +++ b/core/modules/rest/src/LinkManager/RelationLinkManager.php @@ -5,7 +5,7 @@ use Drupal\hal\LinkManager\RelationLinkManager as MovedLinkRelationManager; /** - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. This has + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. This has * been moved to the hal module. This exists solely for BC. * * @see https://www.drupal.org/node/2830467 diff --git a/core/modules/rest/src/LinkManager/RelationLinkManagerInterface.php b/core/modules/rest/src/LinkManager/RelationLinkManagerInterface.php index c2eec34..969c412 100644 --- a/core/modules/rest/src/LinkManager/RelationLinkManagerInterface.php +++ b/core/modules/rest/src/LinkManager/RelationLinkManagerInterface.php @@ -5,7 +5,7 @@ use Drupal\hal\LinkManager\RelationLinkManagerInterface as MovedRelationLinkManagerInterface; /** - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. This has + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. This has * been moved to the hal module. This exists solely for BC. * * @see https://www.drupal.org/node/2830467 diff --git a/core/modules/rest/src/LinkManager/TypeLinkManager.php b/core/modules/rest/src/LinkManager/TypeLinkManager.php index 6d7ba03..f0c6e13 100644 --- a/core/modules/rest/src/LinkManager/TypeLinkManager.php +++ b/core/modules/rest/src/LinkManager/TypeLinkManager.php @@ -5,7 +5,7 @@ use Drupal\hal\LinkManager\TypeLinkManager as MovedTypeLinkManager; /** - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. This has + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. This has * been moved to the hal module. This exists solely for BC. * * @see https://www.drupal.org/node/2830467 diff --git a/core/modules/rest/src/LinkManager/TypeLinkManagerInterface.php b/core/modules/rest/src/LinkManager/TypeLinkManagerInterface.php index 9a37049..fbb4d52 100644 --- a/core/modules/rest/src/LinkManager/TypeLinkManagerInterface.php +++ b/core/modules/rest/src/LinkManager/TypeLinkManagerInterface.php @@ -5,7 +5,7 @@ use Drupal\hal\LinkManager\TypeLinkManagerInterface as MovedTypeLinkManagerInterface; /** - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. This has + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. This has * been moved to the hal module. This exists solely for BC. * * @see https://www.drupal.org/node/2830467 diff --git a/core/modules/rest/src/RequestHandler.php b/core/modules/rest/src/RequestHandler.php index 8180b70..7d2299a 100644 --- a/core/modules/rest/src/RequestHandler.php +++ b/core/modules/rest/src/RequestHandler.php @@ -317,7 +317,7 @@ protected function createArgumentResolver(RouteMatchInterface $route_match, $uns * @param \Symfony\Component\HttpFoundation\Request $request * The request. * - * @deprecated in Drupal 8.4.0, will be removed before Drupal 9.0.0. Use the + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use the * argument resolver method instead, see ::createArgumentResolver(). * * @see https://www.drupal.org/node/2894819 diff --git a/core/modules/rest/src/Tests/RESTTestBase.php b/core/modules/rest/src/Tests/RESTTestBase.php index a763f9d..b97ae37 100644 --- a/core/modules/rest/src/Tests/RESTTestBase.php +++ b/core/modules/rest/src/Tests/RESTTestBase.php @@ -15,7 +15,7 @@ /** * Test helper class that provides a REST client method to send HTTP requests. * - * @deprecated in Drupal 8.3.x-dev and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\Tests\rest\Functional\ResourceTestBase and * \Drupal\Tests\rest\Functional\EntityResource\EntityResourceTestBase * instead. Only retained for contributed module tests that may be using this diff --git a/core/modules/rest/tests/src/Functional/EntityResource/Action/ActionResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/Action/ActionResourceTestBase.php index 722319a..612b7f6 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/Action/ActionResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/Action/ActionResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\system\Functional\Rest\ActionResourceTestBase as ActionResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\system\Functional\Rest\ActionResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/BaseFieldOverride/BaseFieldOverrideResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/BaseFieldOverride/BaseFieldOverrideResourceTestBase.php index f3f71db..bbec7e0 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/BaseFieldOverride/BaseFieldOverrideResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/BaseFieldOverride/BaseFieldOverrideResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\FunctionalTests\Rest\BaseFieldOverrideResourceTestBase as BaseFieldOverrideResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\FunctionalTests\Rest\BaseFieldOverrideResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/Block/BlockResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/Block/BlockResourceTestBase.php index ef14fd9..d9c5fdc 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/Block/BlockResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/Block/BlockResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\block\Functional\Rest\BlockResourceTestBase as BlockResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\block\Functional\Rest\BlockResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/BlockContent/BlockContentResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/BlockContent/BlockContentResourceTestBase.php index de452a8..7c70343 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/BlockContent/BlockContentResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/BlockContent/BlockContentResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\block_content\Functional\Rest\BlockContentResourceTestBase as BlockContentResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\block_content\Functional\Rest\BlockContentResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/BlockContentType/BlockContentTypeResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/BlockContentType/BlockContentTypeResourceTestBase.php index 033221d..1b8f62d 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/BlockContentType/BlockContentTypeResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/BlockContentType/BlockContentTypeResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\block_content\Functional\Rest\BlockContentTypeResourceTestBase as BlockContentTypeResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\block_content\Functional\Rest\BlockContentTypeResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/Comment/CommentResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/Comment/CommentResourceTestBase.php index 4b44902..10e4bdb 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/Comment/CommentResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/Comment/CommentResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\comment\Functional\Rest\CommentResourceTestBase as CommentResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\comment\Functional\Rest\CommentResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/CommentType/CommentTypeResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/CommentType/CommentTypeResourceTestBase.php index 11cccc1..1091d5e 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/CommentType/CommentTypeResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/CommentType/CommentTypeResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\comment\Functional\Rest\CommentTypeResourceTestBase as CommentTypeResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\comment\Functional\Rest\CommentTypeResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/ConfigTest/ConfigTestResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/ConfigTest/ConfigTestResourceTestBase.php index 87ca8b6..cbfc89d 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/ConfigTest/ConfigTestResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/ConfigTest/ConfigTestResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\config_test\Functional\Rest\ConfigTestResourceTestBase as ConfigTestResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\config_test\Functional\Rest\ConfigTestResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/ConfigurableLanguage/ConfigurableLanguageResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/ConfigurableLanguage/ConfigurableLanguageResourceTestBase.php index da2a79e..5b62ba5 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/ConfigurableLanguage/ConfigurableLanguageResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/ConfigurableLanguage/ConfigurableLanguageResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\language\Functional\Rest\ConfigurableLanguageResourceTestBase as ConfigurableLanguageResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\language\Functional\Rest\ConfigurableLanguageResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/ContactForm/ContactFormResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/ContactForm/ContactFormResourceTestBase.php index e9a1010..47fcedd 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/ContactForm/ContactFormResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/ContactForm/ContactFormResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\contact\Functional\Rest\ContactFormResourceTestBase as ContactFormResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\contact\Functional\Rest\ContactFormResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/ContentLanguageSettings/ContentLanguageSettingsResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/ContentLanguageSettings/ContentLanguageSettingsResourceTestBase.php index dfe5494..b019947 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/ContentLanguageSettings/ContentLanguageSettingsResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/ContentLanguageSettings/ContentLanguageSettingsResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\language\Functional\Rest\ContentLanguageSettingsResourceTestBase as ContentLanguageSettingsResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\language\Functional\Rest\ContentLanguageSettingsResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/DateFormat/DateFormatResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/DateFormat/DateFormatResourceTestBase.php index 1c0522a..f3a3df3 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/DateFormat/DateFormatResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/DateFormat/DateFormatResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\FunctionalTests\Rest\DateFormatResourceTestBase as DateFormatResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\FunctionalTests\Rest\DateFormatResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/Editor/EditorResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/Editor/EditorResourceTestBase.php index 9cdeab0..c7ca81e 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/Editor/EditorResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/Editor/EditorResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\editor\Functional\Rest\EditorResourceTestBase as EditorResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\editor\Functional\Rest\EditorResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/EntityFormDisplay/EntityFormDisplayResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/EntityFormDisplay/EntityFormDisplayResourceTestBase.php index 1862084..ddb5cdf 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/EntityFormDisplay/EntityFormDisplayResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/EntityFormDisplay/EntityFormDisplayResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\FunctionalTests\Rest\EntityFormDisplayResourceTestBase as EntityFormDisplayResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\FunctionalTests\Rest\EntityFormDisplayResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/EntityFormMode/EntityFormModeResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/EntityFormMode/EntityFormModeResourceTestBase.php index 3131f62..ab53dfa 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/EntityFormMode/EntityFormModeResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/EntityFormMode/EntityFormModeResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\FunctionalTests\Rest\EntityFormModeResourceTestBase as EntityFormModeResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\FunctionalTests\Rest\EntityFormModeResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/EntityTest/EntityTestResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/EntityTest/EntityTestResourceTestBase.php index c9dc9b9..3fcdd43 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/EntityTest/EntityTestResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/EntityTest/EntityTestResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\entity_test\Functional\Rest\EntityTestResourceTestBase as EntityTestResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\entity_test\Functional\Rest\EntityTestResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/EntityTestBundle/EntityTestBundleResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/EntityTestBundle/EntityTestBundleResourceTestBase.php index 12fab90..fb19c7f 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/EntityTestBundle/EntityTestBundleResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/EntityTestBundle/EntityTestBundleResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\entity_test\Functional\Rest\EntityTestBundleResourceTestBase as EntityTestBundleResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\entity_test\Functional\Rest\EntityTestBundleResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/EntityTestLabel/EntityTestLabelResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/EntityTestLabel/EntityTestLabelResourceTestBase.php index 75a0950..91cd1da 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/EntityTestLabel/EntityTestLabelResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/EntityTestLabel/EntityTestLabelResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\entity_test\Functional\Rest\EntityTestLabelResourceTestBase as EntityTestLabelResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\entity_test\Functional\Rest\EntityTestLabelResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/EntityViewDisplay/EntityViewDisplayResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/EntityViewDisplay/EntityViewDisplayResourceTestBase.php index 83b6be5..f0282fb 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/EntityViewDisplay/EntityViewDisplayResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/EntityViewDisplay/EntityViewDisplayResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\FunctionalTests\Rest\EntityViewDisplayResourceTestBase as EntityViewDisplayResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\FunctionalTests\Rest\EntityViewDisplayResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/EntityViewMode/EntityViewModeResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/EntityViewMode/EntityViewModeResourceTestBase.php index bdbd58b..6c64741 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/EntityViewMode/EntityViewModeResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/EntityViewMode/EntityViewModeResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\FunctionalTests\Rest\EntityViewModeResourceTestBase as EntityViewModeResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\FunctionalTests\Rest\EntityViewModeResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/Feed/FeedResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/Feed/FeedResourceTestBase.php index 2805b39..540aed1 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/Feed/FeedResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/Feed/FeedResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\aggregator\Functional\Rest\FeedResourceTestBase as FeedResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\aggregator\Functional\Rest\FeedResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/FieldConfig/FieldConfigResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/FieldConfig/FieldConfigResourceTestBase.php index dbb398a..ae6a8da 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/FieldConfig/FieldConfigResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/FieldConfig/FieldConfigResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\field\Functional\Rest\FieldConfigResourceTestBase as FieldConfigResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\field\Functional\Rest\FieldConfigResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/FieldStorageConfig/FieldStorageConfigResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/FieldStorageConfig/FieldStorageConfigResourceTestBase.php index 594e275..066da92 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/FieldStorageConfig/FieldStorageConfigResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/FieldStorageConfig/FieldStorageConfigResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\field\Functional\Rest\FieldStorageConfigResourceTestBase as FieldStorageConfigResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\field\Functional\Rest\FieldStorageConfigResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/File/FileResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/File/FileResourceTestBase.php index b9c63a2..9e68720 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/File/FileResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/File/FileResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\file\Functional\Rest\FileResourceTestBase as FileResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\file\Functional\Rest\FileResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/FilterFormat/FilterFormatResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/FilterFormat/FilterFormatResourceTestBase.php index 1ba0edc..4a1c566 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/FilterFormat/FilterFormatResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/FilterFormat/FilterFormatResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\filter\Functional\Rest\FilterFormatResourceTestBase as FilterFormatResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\filter\Functional\Rest\FilterFormatResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/ImageStyle/ImageStyleResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/ImageStyle/ImageStyleResourceTestBase.php index 07ec79b..c96a290 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/ImageStyle/ImageStyleResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/ImageStyle/ImageStyleResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\image\Functional\Rest\ImageStyleResourceTestBase as ImageStyleResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\image\Functional\Rest\ImageStyleResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/Item/ItemResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/Item/ItemResourceTestBase.php index 3006056..a1eebac 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/Item/ItemResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/Item/ItemResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\aggregator\Functional\Rest\ItemResourceTestBase as ItemResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\aggregator\Functional\Rest\ItemResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/Media/MediaResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/Media/MediaResourceTestBase.php index aadc4d6..eb81565 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/Media/MediaResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/Media/MediaResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\media\Functional\Rest\MediaResourceTestBase as MediaResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\media\Functional\Rest\MediaResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/MediaType/MediaTypeResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/MediaType/MediaTypeResourceTestBase.php index b542fea..7336aa0 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/MediaType/MediaTypeResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/MediaType/MediaTypeResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\media\Functional\Rest\MediaTypeResourceTestBase as MediaTypeResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\media\Functional\Rest\MediaTypeResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/Menu/MenuResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/Menu/MenuResourceTestBase.php index d27866b..62ef5e0 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/Menu/MenuResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/Menu/MenuResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\system\Functional\Rest\MenuResourceTestBase as MenuResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\system\Functional\Rest\MenuResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/MenuLinkContent/MenuLinkContentResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/MenuLinkContent/MenuLinkContentResourceTestBase.php index 327f5e5..2970429 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/MenuLinkContent/MenuLinkContentResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/MenuLinkContent/MenuLinkContentResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\menu_link_content\Functional\Rest\MenuLinkContentResourceTestBase as MenuLinkContentResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\menu_link_content\Functional\Rest\MenuLinkContentResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/Message/MessageResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/Message/MessageResourceTestBase.php index 2cd00a7..fd0db8e 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/Message/MessageResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/Message/MessageResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\contact\Functional\Rest\MessageResourceTestBase as MessageResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\contact\Functional\Rest\MessageResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/Node/NodeResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/Node/NodeResourceTestBase.php index f749353..b74c3c0 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/Node/NodeResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/Node/NodeResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\node\Functional\Rest\NodeResourceTestBase as NodeResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\node\Functional\Rest\NodeResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/NodeType/NodeTypeResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/NodeType/NodeTypeResourceTestBase.php index f68be26..a0a99e0 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/NodeType/NodeTypeResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/NodeType/NodeTypeResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\node\Functional\Rest\NodeTypeResourceTestBase as NodeTypeResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\node\Functional\Rest\NodeTypeResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/RdfMapping/RdfMappingResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/RdfMapping/RdfMappingResourceTestBase.php index 7c2dd6d..4ab1dae 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/RdfMapping/RdfMappingResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/RdfMapping/RdfMappingResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\rdf\Functional\Rest\RdfMappingResourceTestBase as RdfMappingResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\rdf\Functional\Rest\RdfMappingResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/ResponsiveImageStyle/ResponsiveImageStyleResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/ResponsiveImageStyle/ResponsiveImageStyleResourceTestBase.php index af1628b..af40321 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/ResponsiveImageStyle/ResponsiveImageStyleResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/ResponsiveImageStyle/ResponsiveImageStyleResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\responsive_image\Functional\Rest\ResponsiveImageStyleResourceTestBase as ResponsiveImageStyleResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\responsive_image\Functional\Rest\ResponsiveImageStyleResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/RestResourceConfig/RestResourceConfigResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/RestResourceConfig/RestResourceConfigResourceTestBase.php index 188386f..c29cafc 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/RestResourceConfig/RestResourceConfigResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/RestResourceConfig/RestResourceConfigResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\rest\Functional\Rest\RestResourceConfigResourceTestBase as RestResourceConfigResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\rest\Functional\Rest\RestResourceConfigResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/Role/RoleResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/Role/RoleResourceTestBase.php index ea708e6..38cbb94 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/Role/RoleResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/Role/RoleResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\user\Functional\Rest\RoleResourceTestBase as RoleResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\user\Functional\Rest\RoleResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/SearchPage/SearchPageResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/SearchPage/SearchPageResourceTestBase.php index d862bf2..d010292 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/SearchPage/SearchPageResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/SearchPage/SearchPageResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\search\Functional\Rest\SearchPageResourceTestBase as SearchPageResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\search\Functional\Rest\SearchPageResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/Shortcut/ShortcutResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/Shortcut/ShortcutResourceTestBase.php index 9c852fb..18f92ec 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/Shortcut/ShortcutResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/Shortcut/ShortcutResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\shortcut\Functional\Rest\ShortcutResourceTestBase as ShortcutResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\shortcut\Functional\Rest\ShortcutResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/ShortcutSet/ShortcutSetResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/ShortcutSet/ShortcutSetResourceTestBase.php index 5ade571..3d6ae34 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/ShortcutSet/ShortcutSetResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/ShortcutSet/ShortcutSetResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\shortcut\Functional\Rest\ShortcutSetResourceTestBase as ShortcutSetResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\shortcut\Functional\Rest\ShortcutSetResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/Term/TermResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/Term/TermResourceTestBase.php index 7fd07e5..6cbe7d9 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/Term/TermResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/Term/TermResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\taxonomy\Functional\Rest\TermResourceTestBase as TermResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\taxonomy\Functional\Rest\TermResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/Tour/TourResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/Tour/TourResourceTestBase.php index 86842a9..61951de 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/Tour/TourResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/Tour/TourResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\tour\Functional\Rest\TourResourceTestBase as TourResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\tour\Functional\Rest\TourResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/User/UserResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/User/UserResourceTestBase.php index 67ce0c1..6a56112 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/User/UserResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/User/UserResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\user\Functional\Rest\UserResourceTestBase as UserResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\user\Functional\Rest\UserResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/View/ViewResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/View/ViewResourceTestBase.php index 6b3b731..10632d4 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/View/ViewResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/View/ViewResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\views\Functional\Rest\ViewResourceTestBase as ViewResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\views\Functional\Rest\ViewResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/rest/tests/src/Functional/EntityResource/Vocabulary/VocabularyResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/Vocabulary/VocabularyResourceTestBase.php index 9571cbe..2a0beff 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/Vocabulary/VocabularyResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/Vocabulary/VocabularyResourceTestBase.php @@ -7,7 +7,7 @@ use Drupal\Tests\taxonomy\Functional\Rest\VocabularyResourceTestBase as VocabularyResourceTestBaseReal; /** - * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\taxonomy\Functional\Rest\VocabularyResourceTestBase instead. * * @see https://www.drupal.org/node/2971931 diff --git a/core/modules/search/src/Plugin/migrate/process/d6/SearchConfigurationRankings.php b/core/modules/search/src/Plugin/migrate/process/d6/SearchConfigurationRankings.php index 402d74f..b2f98e7 100644 --- a/core/modules/search/src/Plugin/migrate/process/d6/SearchConfigurationRankings.php +++ b/core/modules/search/src/Plugin/migrate/process/d6/SearchConfigurationRankings.php @@ -7,7 +7,7 @@ /** * Generate configuration rankings. * - * @deprecated in Drupal 8.7.x and will be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\search\Plugin\migrate\process\SearchConfigurationRankings instead. * * @MigrateProcessPlugin( diff --git a/core/modules/search/tests/src/Functional/SearchTestBase.php b/core/modules/search/tests/src/Functional/SearchTestBase.php index fe6ac71..fb69739 100644 --- a/core/modules/search/tests/src/Functional/SearchTestBase.php +++ b/core/modules/search/tests/src/Functional/SearchTestBase.php @@ -9,7 +9,7 @@ /** * Defines the common search test code. * - * @deprecated in Drupal 8.6.0 and will be removed in Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * \Drupal\Tests\BrowserTestBase instead. * * @see https://www.drupal.org/node/2979950 @@ -48,7 +48,7 @@ protected function setUp() { * @param string $form_html_id * (optional) HTML ID of the form, to disambiguate. * - * @deprecated in Drupal 8.6.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * \Drupal\Tests\BrowserTestBase::drupalPostForm() instead. * * @see https://www.drupal.org/node/2979950 diff --git a/core/modules/shortcut/shortcut.module b/core/modules/shortcut/shortcut.module index 1b281b2..69a99de 100644 --- a/core/modules/shortcut/shortcut.module +++ b/core/modules/shortcut/shortcut.module @@ -122,7 +122,7 @@ function shortcut_set_switch_access($account = NULL) { * @param $account * A user account that will be assigned to use the set. * - * @deprecated in Drupal 8.x, will be removed before Drupal 9.0. + * @deprecated in drupal:8.0 and is removed from drupal:9.0. * Use \Drupal::entityTypeManager()->getStorage('shortcut_set')->assignUser(). */ function shortcut_set_assign_user($shortcut_set, $account) { @@ -144,7 +144,7 @@ function shortcut_set_assign_user($shortcut_set, $account) { * successfully removed from it. FALSE if the user was already not assigned * to any set. * - * @deprecated in Drupal 8.x, will be removed before Drupal 9.0. + * @deprecated in drupal:8.0 and is removed from drupal:9.0. * Use \Drupal::entityTypeManager()->getStorage('shortcut_set')->unassignUser(). */ function shortcut_set_unassign_user($account) { @@ -233,7 +233,7 @@ function shortcut_default_set($account = NULL) { * @return * TRUE if a shortcut set with that title exists; FALSE otherwise. * - * @deprecated in Drupal 8.x, will be removed before Drupal 9.0. + * @deprecated in drupal:8.0 and is removed from drupal:9.0. */ function shortcut_set_title_exists($title) { $sets = ShortcutSet::loadMultiple(); diff --git a/core/modules/shortcut/src/Tests/ShortcutTestBase.php b/core/modules/shortcut/src/Tests/ShortcutTestBase.php index 6f89201..57bff70 100644 --- a/core/modules/shortcut/src/Tests/ShortcutTestBase.php +++ b/core/modules/shortcut/src/Tests/ShortcutTestBase.php @@ -12,7 +12,7 @@ /** * Defines base class for shortcut test cases. * - * @deprecated in Drupal 8.5.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\shortcut\Functional\ShortcutTestBase. * * @see https://www.drupal.org/node/2906736 diff --git a/core/modules/simpletest/simpletest.api.php b/core/modules/simpletest/simpletest.api.php index d8f8209..753b9c4 100644 --- a/core/modules/simpletest/simpletest.api.php +++ b/core/modules/simpletest/simpletest.api.php @@ -20,7 +20,7 @@ * name of the test class, and the value is in associative array containing * 'name', 'description', 'group', and 'requires' keys. * - * @deprecated in Drupal 8.6.x and will be removed before Drupal 9.0.0. Convert + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Convert * your test to a PHPUnit-based one and implement test listeners. * * @see https://www.drupal.org/node/2939892 diff --git a/core/modules/simpletest/src/AssertContentTrait.php b/core/modules/simpletest/src/AssertContentTrait.php index 4d05c05..54a9c18 100644 --- a/core/modules/simpletest/src/AssertContentTrait.php +++ b/core/modules/simpletest/src/AssertContentTrait.php @@ -9,7 +9,7 @@ /** * Provides test methods to assert content. * - * @deprecated in Drupal 8.6.0, to be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * Drupal\KernelTests\AssertContentTrait instead. * * @see https://www.drupal.org/node/2943146 diff --git a/core/modules/simpletest/src/AssertHelperTrait.php b/core/modules/simpletest/src/AssertHelperTrait.php index 95c175d..70262be 100644 --- a/core/modules/simpletest/src/AssertHelperTrait.php +++ b/core/modules/simpletest/src/AssertHelperTrait.php @@ -9,7 +9,7 @@ /** * Provides helper methods for assertions. * - * @deprecated in Drupal 8.4.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\AssertHelperTrait instead. * * @see https://www.drupal.org/node/2884454 diff --git a/core/modules/simpletest/src/BlockCreationTrait.php b/core/modules/simpletest/src/BlockCreationTrait.php index 1697914..3b5043d 100644 --- a/core/modules/simpletest/src/BlockCreationTrait.php +++ b/core/modules/simpletest/src/BlockCreationTrait.php @@ -11,7 +11,7 @@ * * This trait is meant to be used only by test classes. * - * @deprecated in Drupal 8.4.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\Tests\block\Traits\BlockCreationTrait instead. * * @see https://www.drupal.org/node/2884454 diff --git a/core/modules/simpletest/src/BrowserTestBase.php b/core/modules/simpletest/src/BrowserTestBase.php index 8819d4f..b3ff8c1 100644 --- a/core/modules/simpletest/src/BrowserTestBase.php +++ b/core/modules/simpletest/src/BrowserTestBase.php @@ -18,7 +18,7 @@ * @see \Drupal\simpletest\WebTestBase * @see \Drupal\Tests\BrowserTestBase * - * @deprecated in Drupal 8.1.x, will be removed before Drupal 9.0. + * @deprecated in drupal:8.1.0 and is removed from drupal:9.0. * Use Drupal\Tests\BrowserTestBase instead. */ abstract class BrowserTestBase extends BaseBrowserTestBase { diff --git a/core/modules/simpletest/src/ContentTypeCreationTrait.php b/core/modules/simpletest/src/ContentTypeCreationTrait.php index 7222561..f5f8396 100644 --- a/core/modules/simpletest/src/ContentTypeCreationTrait.php +++ b/core/modules/simpletest/src/ContentTypeCreationTrait.php @@ -11,7 +11,7 @@ * * This trait is meant to be used only by test classes. * - * @deprecated in Drupal 8.4.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\Tests\node\Traits\ContentTypeCreationTrait instead. * * @see https://www.drupal.org/node/2884454 diff --git a/core/modules/simpletest/src/InstallerTestBase.php b/core/modules/simpletest/src/InstallerTestBase.php index 0f4af3a..5c46222 100644 --- a/core/modules/simpletest/src/InstallerTestBase.php +++ b/core/modules/simpletest/src/InstallerTestBase.php @@ -17,7 +17,7 @@ /** * Base class for testing the interactive installer. * - * @deprecated in Drupal 8.6.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. * Use \Drupal\FunctionalTests\Installer\InstallerTestBase. See * https://www.drupal.org/node/2988752 */ diff --git a/core/modules/simpletest/src/KernelTestBase.php b/core/modules/simpletest/src/KernelTestBase.php index 80c8eb0..0b88b03 100644 --- a/core/modules/simpletest/src/KernelTestBase.php +++ b/core/modules/simpletest/src/KernelTestBase.php @@ -62,7 +62,7 @@ * @see \Drupal\Tests\KernelTestBase::installSchema() * @see \Drupal\Tests\BrowserTestBase * - * @deprecated in Drupal 8.0.x, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\KernelTests\KernelTestBase instead. * * @ingroup testing diff --git a/core/modules/simpletest/src/NodeCreationTrait.php b/core/modules/simpletest/src/NodeCreationTrait.php index c4cffa7..aadbd5f 100644 --- a/core/modules/simpletest/src/NodeCreationTrait.php +++ b/core/modules/simpletest/src/NodeCreationTrait.php @@ -11,7 +11,7 @@ * * This trait is meant to be used only by test classes. * - * @deprecated in Drupal 8.4.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\Tests\node\Traits\NodeCreationTrait instead. * * @see https://www.drupal.org/node/2884454 diff --git a/core/modules/simpletest/src/RandomGeneratorTrait.php b/core/modules/simpletest/src/RandomGeneratorTrait.php index a371520..a3c8740 100644 --- a/core/modules/simpletest/src/RandomGeneratorTrait.php +++ b/core/modules/simpletest/src/RandomGeneratorTrait.php @@ -9,7 +9,7 @@ /** * Provides random generator utility methods. * - * @deprecated in Drupal 8.1.1, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.1.1 and is removed from drupal:9.0.0. Use * \Drupal\Tests\RandomGeneratorTrait instead. * * @see \Drupal\Tests diff --git a/core/modules/simpletest/src/TestBase.php b/core/modules/simpletest/src/TestBase.php index 4fce148..2ab3552 100644 --- a/core/modules/simpletest/src/TestBase.php +++ b/core/modules/simpletest/src/TestBase.php @@ -24,7 +24,7 @@ * * Do not extend this class directly; use \Drupal\simpletest\WebTestBase. * - * @deprecated in Drupal 8.8.0 and will be removed before Drupal 9.0.0. Instead, + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Instead, * use one of the phpunit base test classes like * Drupal\Tests\BrowserTestBase. See https://www.drupal.org/node/3030340. */ diff --git a/core/modules/simpletest/src/UserCreationTrait.php b/core/modules/simpletest/src/UserCreationTrait.php index a08c373..52a0aaf 100644 --- a/core/modules/simpletest/src/UserCreationTrait.php +++ b/core/modules/simpletest/src/UserCreationTrait.php @@ -13,7 +13,7 @@ * This trait is meant to be used only by test classes extending * \Drupal\simpletest\TestBase. * - * @deprecated in Drupal 8.4.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * Drupal\Tests\user\Traits\UserCreationTrait instead. * * @see https://www.drupal.org/node/2884454 diff --git a/core/modules/simpletest/src/WebTestBase.php b/core/modules/simpletest/src/WebTestBase.php index ca82321..620de3e 100644 --- a/core/modules/simpletest/src/WebTestBase.php +++ b/core/modules/simpletest/src/WebTestBase.php @@ -33,7 +33,7 @@ * * @ingroup testing * - * @deprecated in Drupal 8.8.0 and will be removed before Drupal 9.0.0. Instead, + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Instead, * use \Drupal\Tests\BrowserTestBase. See https://www.drupal.org/node/3030340. */ abstract class WebTestBase extends TestBase { diff --git a/core/modules/statistics/statistics.module b/core/modules/statistics/statistics.module index 222fe98..d35f805 100644 --- a/core/modules/statistics/statistics.module +++ b/core/modules/statistics/statistics.module @@ -93,7 +93,7 @@ function statistics_cron() { * and the username for the selected node(s), or FALSE if the query could not * be executed correctly. * - * @deprecated in Drupal 8.6.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. * Use \Drupal\statistics\NodeStatisticsDatabaseStorage::fetchAll() instead. */ function statistics_title_list($dbfield, $dbrows) { @@ -123,7 +123,7 @@ function statistics_title_list($dbfield, $dbrows) { /** * Retrieves a node's "view statistics". * - * @deprecated in Drupal 8.2.x, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.2.0 and is removed from drupal:9.0.0. * Use \Drupal::service('statistics.storage.node')->fetchView($id). */ function statistics_get($id) { diff --git a/core/modules/system/src/Plugin/views/field/BulkForm.php b/core/modules/system/src/Plugin/views/field/BulkForm.php index 486e1be..9505ab0 100644 --- a/core/modules/system/src/Plugin/views/field/BulkForm.php +++ b/core/modules/system/src/Plugin/views/field/BulkForm.php @@ -12,7 +12,7 @@ * * @ViewsField("legacy_bulk_form") * - * @deprecated in drupal:8.5.0, will be removed before drupal:9.0.0. Use + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. Use * \Drupal\views\Plugin\views\field\BulkForm instead. * * @see https://www.drupal.org/node/2916716 diff --git a/core/modules/system/src/Tests/Cache/GenericCacheBackendUnitTestBase.php b/core/modules/system/src/Tests/Cache/GenericCacheBackendUnitTestBase.php index 4634196..4abca9e 100644 --- a/core/modules/system/src/Tests/Cache/GenericCacheBackendUnitTestBase.php +++ b/core/modules/system/src/Tests/Cache/GenericCacheBackendUnitTestBase.php @@ -18,7 +18,7 @@ * @see DatabaseBackendUnitTestCase * For a full working implementation. * - * @deprecated as of Drupal 8.2.x, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.2.0 and is removed from drupal:9.0.0. Use * \Drupal\KernelTests\Core\Cache\GenericCacheBackendUnitTestBase instead. */ abstract class GenericCacheBackendUnitTestBase extends KernelTestBase { diff --git a/core/modules/system/src/Tests/Database/DatabaseWebTestBase.php b/core/modules/system/src/Tests/Database/DatabaseWebTestBase.php index 8a250ba..ed40e58 100644 --- a/core/modules/system/src/Tests/Database/DatabaseWebTestBase.php +++ b/core/modules/system/src/Tests/Database/DatabaseWebTestBase.php @@ -10,7 +10,7 @@ /** * Base class for databases database tests. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. Instead + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Instead * use \Drupal\Tests\system\Functional\Database\DatabaseTestBase. */ abstract class DatabaseWebTestBase extends WebTestBase { diff --git a/core/modules/system/src/Tests/Database/FakeRecord.php b/core/modules/system/src/Tests/Database/FakeRecord.php index 375e60f..5cd9988 100644 --- a/core/modules/system/src/Tests/Database/FakeRecord.php +++ b/core/modules/system/src/Tests/Database/FakeRecord.php @@ -11,7 +11,7 @@ * rather than just a stdClass or array. This class is for testing that * functionality. (See testQueryFetchClass() below) * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. Instead + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Instead * use \Drupal\Tests\system\Functional\Database\FakeRecord. */ class FakeRecord {} diff --git a/core/modules/system/src/Tests/Entity/EntityDefinitionTestTrait.php b/core/modules/system/src/Tests/Entity/EntityDefinitionTestTrait.php index 0817aa7..f41d426 100644 --- a/core/modules/system/src/Tests/Entity/EntityDefinitionTestTrait.php +++ b/core/modules/system/src/Tests/Entity/EntityDefinitionTestTrait.php @@ -10,7 +10,7 @@ /** * Provides some test methods used to update existing entity definitions. * - * @deprecated in Drupal 8.6.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\system\Functional\Entity\Traits\EntityDefinitionTestTrait. * * @see https://www.drupal.org/node/2946549 diff --git a/core/modules/system/src/Tests/Entity/EntityUnitTestBase.php b/core/modules/system/src/Tests/Entity/EntityUnitTestBase.php index 9997ca5..9ec744a 100644 --- a/core/modules/system/src/Tests/Entity/EntityUnitTestBase.php +++ b/core/modules/system/src/Tests/Entity/EntityUnitTestBase.php @@ -12,7 +12,7 @@ /** * Defines an abstract test base for entity unit tests. * - * @deprecated in Drupal 8.1.0, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.1.0 and is removed from drupal:9.0.0. Use * \Drupal\KernelTests\Core\Entity\EntityKernelTestBase instead. */ abstract class EntityUnitTestBase extends KernelTestBase { diff --git a/core/modules/system/src/Tests/Entity/EntityWithUriCacheTagsTestBase.php b/core/modules/system/src/Tests/Entity/EntityWithUriCacheTagsTestBase.php index 1e2fb61..9d49c88 100644 --- a/core/modules/system/src/Tests/Entity/EntityWithUriCacheTagsTestBase.php +++ b/core/modules/system/src/Tests/Entity/EntityWithUriCacheTagsTestBase.php @@ -12,7 +12,7 @@ /** * Provides helper methods for Entity cache tags tests; for entities with URIs. * - * @deprecated in Drupal 8.6.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\system\Functional\Entity\EntityWithUriCacheTagsTestBase. * * @see https://www.drupal.org/node/2946549 diff --git a/core/modules/system/src/Tests/Image/ToolkitTestBase.php b/core/modules/system/src/Tests/Image/ToolkitTestBase.php index ef85f0c..fd8c7e2 100644 --- a/core/modules/system/src/Tests/Image/ToolkitTestBase.php +++ b/core/modules/system/src/Tests/Image/ToolkitTestBase.php @@ -10,7 +10,7 @@ /** * Base class for image manipulation testing. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use Drupal\FunctionalTests\Image\ToolkitTestBase instead. * * @see https://www.drupal.org/node/2862641 diff --git a/core/modules/system/src/Tests/Installer/ConfigAfterInstallerTestBase.php b/core/modules/system/src/Tests/Installer/ConfigAfterInstallerTestBase.php index 43d8d48..ea83c75 100644 --- a/core/modules/system/src/Tests/Installer/ConfigAfterInstallerTestBase.php +++ b/core/modules/system/src/Tests/Installer/ConfigAfterInstallerTestBase.php @@ -13,7 +13,7 @@ /** * Provides a class for install profiles to check their installed config. * - * @deprecated in Drupal 8.6.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. * Use \Drupal\FunctionalTests\Installer\ConfigAfterInstallerTestBase. */ abstract class ConfigAfterInstallerTestBase extends InstallerTestBase { diff --git a/core/modules/system/src/Tests/System/SystemConfigFormTestBase.php b/core/modules/system/src/Tests/System/SystemConfigFormTestBase.php index 0abbfd3..a814504 100644 --- a/core/modules/system/src/Tests/System/SystemConfigFormTestBase.php +++ b/core/modules/system/src/Tests/System/SystemConfigFormTestBase.php @@ -13,7 +13,7 @@ * @see UserAdminSettingsFormTest * For a full working implementation. * - * @deprecated in Drupal 8.6.x and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use * \Drupal\KernelTests\ConfigFormTestBase instead. * * @see https://www.drupal.org/node/2941907 diff --git a/core/modules/system/src/Tests/Update/DbUpdatesTrait.php b/core/modules/system/src/Tests/Update/DbUpdatesTrait.php index 8a8ae84..e25832b 100644 --- a/core/modules/system/src/Tests/Update/DbUpdatesTrait.php +++ b/core/modules/system/src/Tests/Update/DbUpdatesTrait.php @@ -13,7 +13,7 @@ * * This should be used only by classes extending \Drupal\simpletest\WebTestBase. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use \Drupal\FunctionalTests\Update\DbUpdatesTrait. * @see https://www.drupal.org/node/2896640 */ diff --git a/core/modules/system/src/Tests/Update/UpdatePathTestBase.php b/core/modules/system/src/Tests/Update/UpdatePathTestBase.php index 49d96ac..f2ff89c 100644 --- a/core/modules/system/src/Tests/Update/UpdatePathTestBase.php +++ b/core/modules/system/src/Tests/Update/UpdatePathTestBase.php @@ -36,7 +36,7 @@ * * @ingroup update_api * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use \Drupal\FunctionalTests\Update\UpdatePathTestBase. * @see https://www.drupal.org/node/2896640 * diff --git a/core/modules/system/system.module b/core/modules/system/system.module index 1371ea0..c930469 100644 --- a/core/modules/system/system.module +++ b/core/modules/system/system.module @@ -32,7 +32,7 @@ /** * New users will be set to the default time zone at registration. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\user\UserInterface::TIMEZONE_DEFAULT instead. * * @see https://www.drupal.org/node/2831620 @@ -42,7 +42,7 @@ /** * New users will get an empty time zone at registration. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\user\UserInterface::TIMEZONE_EMPTY instead. * * @see https://www.drupal.org/node/2831620 @@ -52,7 +52,7 @@ /** * New users will select their own timezone at registration. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\user\UserInterface::TIMEZONE_SELECT instead. * * @see https://www.drupal.org/node/2831620 @@ -77,7 +77,7 @@ /** * Return only visible regions. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\block\BlockRepositoryInterface::REGIONS_VISIBLE instead. * * @see system_region_list() @@ -88,7 +88,7 @@ /** * Return all regions. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\block\BlockRepositoryInterface::REGIONS_ALL instead. * * @see system_region_list() @@ -990,7 +990,7 @@ function system_get_info($type, $name = NULL) { * @param \Drupal\Core\Extension\Extension[] $modules * The array of all module info. * - * @deprecated in Drupal 8.5.0 and will be removed before Drupal 9.0.0. This + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. This * function is no longer used in Drupal core. * * @see https://www.drupal.org/node/2709919 @@ -1016,7 +1016,7 @@ function _system_rebuild_module_data_ensure_required($module, &$modules) { * @return \Drupal\Core\Extension\Extension[] * An associative array of module information. * - * @deprecated in Drupal 8.5.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal::service('extension.list.module')->reset()->getList() * instead. Note: You probably don't need the reset() method. * @@ -1033,7 +1033,7 @@ function _system_rebuild_module_data() { * @return \Drupal\Core\Extension\Extension[] * Array of all available modules and their data. * - * @deprecated in Drupal 8.8.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. * Use \Drupal::service('extension.list.module')->getList() instead. * Note: use reset() only when you really need to rescan and rebuild the list. * diff --git a/core/modules/system/tests/modules/entity_test/entity_test.module b/core/modules/system/tests/modules/entity_test/entity_test.module index 9a080bf..b3cf413 100644 --- a/core/modules/system/tests/modules/entity_test/entity_test.module +++ b/core/modules/system/tests/modules/entity_test/entity_test.module @@ -366,7 +366,7 @@ function entity_test_form_node_form_alter(&$form, FormStateInterface $form_state * @return \Drupal\entity_test\Entity\EntityTest * The loaded entity object, or NULL if the entity cannot be loaded. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal::entityTypeManager()->getStorage('entity_test')->load(). * * @see https://www.drupal.org/node/2266845 @@ -391,7 +391,7 @@ function entity_test_load($id, $reset = FALSE) { * @return \Drupal\entity_test\Entity\EntityTestRev * The loaded entity object, or NULL if the entity cannot be loaded. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal::entityTypeManager()->getStorage('entity_test_rev')->load(). * * @see https://www.drupal.org/node/2266845 @@ -416,7 +416,7 @@ function entity_test_rev_load($id, $reset = FALSE) { * @return \Drupal\entity_test\Entity\EntityTestMul * The loaded entity object, or FALSE if the entity cannot be loaded. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal::entityTypeManager()->getStorage('entity_test_mul')->load(). * * @see https://www.drupal.org/node/2266845 @@ -441,7 +441,7 @@ function entity_test_mul_load($id, $reset = FALSE) { * @return \Drupal\entity_test\Entity\EntityTestMulRev * The loaded entity object, or NULL if the entity cannot be loaded. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal::entityTypeManager()->getStorage('entity_test_mulrev_load')->load(). * * @see https://www.drupal.org/node/2266845 diff --git a/core/modules/system/tests/src/FunctionalJavascript/OffCanvasTestBase.php b/core/modules/system/tests/src/FunctionalJavascript/OffCanvasTestBase.php index fc3fa23..3907768 100644 --- a/core/modules/system/tests/src/FunctionalJavascript/OffCanvasTestBase.php +++ b/core/modules/system/tests/src/FunctionalJavascript/OffCanvasTestBase.php @@ -103,7 +103,7 @@ protected function getOffCanvasDialog() { * @param int $timeout * (optional) Timeout in milliseconds, defaults to 10000. * - * @deprecated in Drupal 8.8.x, will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use * Drupal\FunctionalJavascriptTests\JSWebAssert::assertNoElementAfterWait() */ protected function waitForNoElement($selector, $timeout = 10000) { diff --git a/core/modules/taxonomy/src/Plugin/migrate/cckfield/TaxonomyTermReference.php b/core/modules/taxonomy/src/Plugin/migrate/cckfield/TaxonomyTermReference.php index 4ba5190..4de67f8 100644 --- a/core/modules/taxonomy/src/Plugin/migrate/cckfield/TaxonomyTermReference.php +++ b/core/modules/taxonomy/src/Plugin/migrate/cckfield/TaxonomyTermReference.php @@ -18,7 +18,7 @@ * destination_module = "core", * ) * - * @deprecated in Drupal 8.4.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use * \Drupal\taxonomy\Plugin\migrate\field\TaxonomyTermReference instead. * * @see https://www.drupal.org/node/2751897 diff --git a/core/modules/taxonomy/src/TermViewBuilder.php b/core/modules/taxonomy/src/TermViewBuilder.php index 07d0c07..555f9bb 100644 --- a/core/modules/taxonomy/src/TermViewBuilder.php +++ b/core/modules/taxonomy/src/TermViewBuilder.php @@ -9,7 +9,7 @@ /** * View builder handler for taxonomy terms. * - * @deprecated in Drupal 8.5.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Entity\EntityViewBuilder instead. * * @see \Drupal\Core\Entity\EntityViewBuilder diff --git a/core/modules/taxonomy/src/Tests/TaxonomyTestTrait.php b/core/modules/taxonomy/src/Tests/TaxonomyTestTrait.php index 1d13caa..41f286c 100644 --- a/core/modules/taxonomy/src/Tests/TaxonomyTestTrait.php +++ b/core/modules/taxonomy/src/Tests/TaxonomyTestTrait.php @@ -11,7 +11,7 @@ /** * Provides common helper methods for Taxonomy module tests. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\taxonomy\Traits\TaxonomyTestTrait instead. */ trait TaxonomyTestTrait { diff --git a/core/modules/taxonomy/src/Tests/TaxonomyTranslationTestTrait.php b/core/modules/taxonomy/src/Tests/TaxonomyTranslationTestTrait.php index edb9dd9..7232106 100644 --- a/core/modules/taxonomy/src/Tests/TaxonomyTranslationTestTrait.php +++ b/core/modules/taxonomy/src/Tests/TaxonomyTranslationTestTrait.php @@ -12,7 +12,7 @@ /** * Provides common testing base for translated taxonomy terms. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\taxonomy\Functional\TaxonomyTranslationTestTrait */ trait TaxonomyTranslationTestTrait { diff --git a/core/modules/taxonomy/src/VocabularyInterface.php b/core/modules/taxonomy/src/VocabularyInterface.php index 869fd97..ffd8b86 100644 --- a/core/modules/taxonomy/src/VocabularyInterface.php +++ b/core/modules/taxonomy/src/VocabularyInterface.php @@ -30,7 +30,7 @@ * @return int * The vocabulary hierarchy. * - * @deprecated in Drupal 8.7.x and will be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\taxonomy\TermStorage::getVocabularyHierarchyType() instead. */ public function getHierarchy(); @@ -47,7 +47,7 @@ public function getHierarchy(); * * @return $this * - * @deprecated in Drupal 8.7.x and will be removed before Drupal 9.0.x. Reset + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Reset * the cache of the taxonomy_term storage handler instead. */ public function setHierarchy($hierarchy); diff --git a/core/modules/taxonomy/taxonomy.module b/core/modules/taxonomy/taxonomy.module index 160bcbe..8f35ddf 100644 --- a/core/modules/taxonomy/taxonomy.module +++ b/core/modules/taxonomy/taxonomy.module @@ -160,7 +160,7 @@ function taxonomy_theme() { * @return int * An integer that represents the level of the vocabulary's hierarchy. * - * @deprecated in Drupal 8.7.x. Will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal\taxonomy\TermStorage::getVocabularyHierarchyType() instead. */ function taxonomy_check_vocabulary_hierarchy(VocabularyInterface $vocabulary, $changed_term) { @@ -183,7 +183,7 @@ function taxonomy_check_vocabulary_hierarchy(VocabularyInterface $vocabulary, $c * A $page element suitable for use by * \Drupal\Core\Render\RendererInterface::render(). * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal::entityTypeManager()->getViewBuilder('taxonomy_term')->view() * instead. * @@ -211,7 +211,7 @@ function taxonomy_term_view(Term $term, $view_mode = 'full', $langcode = NULL) { * An array in the format expected by * \Drupal\Core\Render\RendererInterface::render(). * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal::entityTypeManager()->getViewBuilder('taxonomy_term')->viewMultiple() * instead. * @@ -366,7 +366,7 @@ function taxonomy_term_load_multiple_by_name($name, $vocabulary = NULL) { * An array of taxonomy term entities, indexed by tid. When no results are * found, an empty array is returned. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\taxonomy\Entity\Term::loadMultiple(). * * @see https://www.drupal.org/node/2266845 @@ -389,7 +389,7 @@ function taxonomy_term_load_multiple(array $tids = NULL) { * @return array * An array of vocabulary objects, indexed by vid. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\taxonomy\Entity\Vocabulary::loadMultiple(). * * @see https://www.drupal.org/node/2266845 @@ -409,7 +409,7 @@ function taxonomy_vocabulary_load_multiple(array $vids = NULL) { * The taxonomy vocabulary entity, if exists, NULL otherwise. Results are * statically cached. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\taxonomy\Entity\Vocabulary::load(). * * @see https://www.drupal.org/node/2266845 @@ -429,7 +429,7 @@ function taxonomy_vocabulary_load($vid) { * A taxonomy term entity, or NULL if the term was not found. Results are * statically cached. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * Drupal\taxonomy\Entity\Term::load(). * * @see https://www.drupal.org/node/2266845 diff --git a/core/modules/taxonomy/tests/src/Functional/TaxonomyTestTrait.php b/core/modules/taxonomy/tests/src/Functional/TaxonomyTestTrait.php index 9e4213c..be2df79 100644 --- a/core/modules/taxonomy/tests/src/Functional/TaxonomyTestTrait.php +++ b/core/modules/taxonomy/tests/src/Functional/TaxonomyTestTrait.php @@ -9,7 +9,7 @@ /** * Provides common helper methods for Taxonomy module tests. * - * @deprecated in Drupal 8.8.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\taxonomy\Traits\TaxonomyTestTrait instead. * * @see https://www.drupal.org/node/3041703 diff --git a/core/modules/text/src/Plugin/migrate/cckfield/TextField.php b/core/modules/text/src/Plugin/migrate/cckfield/TextField.php index 109b670..092fd71 100644 --- a/core/modules/text/src/Plugin/migrate/cckfield/TextField.php +++ b/core/modules/text/src/Plugin/migrate/cckfield/TextField.php @@ -21,7 +21,7 @@ * destination_module = "text", * ) * - * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use * \Drupal\text\Plugin\migrate\field\d6\TextField or * \Drupal\text\Plugin\migrate\field\d7\TextField instead. * diff --git a/core/modules/tour/src/Tests/TourTestBase.php b/core/modules/tour/src/Tests/TourTestBase.php index eca2ef8..f5a8430 100644 --- a/core/modules/tour/src/Tests/TourTestBase.php +++ b/core/modules/tour/src/Tests/TourTestBase.php @@ -9,7 +9,7 @@ /** * Base class for testing Tour functionality. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\tour\Functional\TourTestBase instead. */ abstract class TourTestBase extends WebTestBase { diff --git a/core/modules/tracker/tests/src/Functional/Views/TrackerTestBase.php b/core/modules/tracker/tests/src/Functional/Views/TrackerTestBase.php index d1b640c..f5f11b5 100644 --- a/core/modules/tracker/tests/src/Functional/Views/TrackerTestBase.php +++ b/core/modules/tracker/tests/src/Functional/Views/TrackerTestBase.php @@ -13,7 +13,7 @@ /** * Base class for all tracker tests. * - * @deprecated in Drupal 8.8.0 and will be removed before Drupal 9.0.0. Instead, + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Instead, * use Kernel tests to test tracker module views plugins integration. * * @see https://www.drupal.org/node/3046938 diff --git a/core/modules/tracker/tracker.module b/core/modules/tracker/tracker.module index 9e9acb3..548ce57 100644 --- a/core/modules/tracker/tracker.module +++ b/core/modules/tracker/tracker.module @@ -137,7 +137,7 @@ function tracker_cron() { /** * Access callback: Determines access permission for a user's own account. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. As + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. As * internal API, _tracker_user_access() may also be removed in a minor * release. * @@ -159,7 +159,7 @@ function _tracker_myrecent_access(AccountInterface $account) { /** * Access callback: Determines access permission for an account. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. As + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. As * internal API, _tracker_user_access() may also be removed in a minor * release. * diff --git a/core/modules/update/update.module b/core/modules/update/update.module index c783d7e..511f530 100644 --- a/core/modules/update/update.module +++ b/core/modules/update/update.module @@ -22,7 +22,7 @@ /** * Project is missing security update(s). * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\update\UpdateManagerInterface::NOT_SECURE instead. * * @see https://www.drupal.org/node/2831620 @@ -32,7 +32,7 @@ /** * Current release has been unpublished and is no longer available. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\update\UpdateManagerInterface::REVOKED instead. * * @see https://www.drupal.org/node/2831620 @@ -42,7 +42,7 @@ /** * Current release is no longer supported by the project maintainer. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\update\UpdateManagerInterface::NOT_SUPPORTED instead. * * @see https://www.drupal.org/node/2831620 @@ -52,7 +52,7 @@ /** * Project has a new release available, but it is not a security release. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\update\UpdateManagerInterface::NOT_CURRENT instead. * * @see https://www.drupal.org/node/2831620 @@ -62,7 +62,7 @@ /** * Project is up to date. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\update\UpdateManagerInterface::CURRENT instead. * * @see https://www.drupal.org/node/2831620 @@ -72,7 +72,7 @@ /** * Project's status cannot be checked. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\update\UpdateFetcherInterface::NOT_CHECKED instead. * * @see https://www.drupal.org/node/2831620 @@ -82,7 +82,7 @@ /** * No available update data was found for project. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\update\UpdateFetcherInterface::UNKNOWN instead. * * @see https://www.drupal.org/node/2831620 @@ -92,7 +92,7 @@ /** * There was a failure fetching available update data for this project. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\update\UpdateFetcherInterface::NOT_FETCHED instead. * * @see https://www.drupal.org/node/2831620 @@ -102,7 +102,7 @@ /** * We need to (re)fetch available update data for this project. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\update\UpdateFetcherInterface::FETCH_PENDING instead. * * @see https://www.drupal.org/node/2831620 @@ -424,7 +424,7 @@ function update_get_available($refresh = FALSE) { * * @internal * - * @deprecated in Drupal 8.6.0 and will be removed before Drupal 9.0.0. Use the + * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0. Use the * 'Insecure' release type tag in update XML provided by Drupal.org to * determine if releases are insecure. */ diff --git a/core/modules/user/src/PrivateTempStore.php b/core/modules/user/src/PrivateTempStore.php index 8b0bc43..f53ad11 100644 --- a/core/modules/user/src/PrivateTempStore.php +++ b/core/modules/user/src/PrivateTempStore.php @@ -16,7 +16,7 @@ class_alias('\Drupal\Core\TempStore\TempStoreException', '\Drupal\user\TempStore /** * Stores and retrieves temporary data for a given owner. * - * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\TempStore\PrivateTempStore instead. * * @see \Drupal\Core\TempStore\PrivateTempStore diff --git a/core/modules/user/src/PrivateTempStoreFactory.php b/core/modules/user/src/PrivateTempStoreFactory.php index 21d6bd1..a92ccb2 100644 --- a/core/modules/user/src/PrivateTempStoreFactory.php +++ b/core/modules/user/src/PrivateTempStoreFactory.php @@ -9,7 +9,7 @@ /** * Creates a PrivateTempStore object for a given collection. * - * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\TempStore\PrivateTempStoreFactory instead. * * @see \Drupal\Core\TempStore\PrivateTempStoreFactory diff --git a/core/modules/user/src/SharedTempStore.php b/core/modules/user/src/SharedTempStore.php index 1802110..ba45af0 100644 --- a/core/modules/user/src/SharedTempStore.php +++ b/core/modules/user/src/SharedTempStore.php @@ -16,7 +16,7 @@ class_alias('\Drupal\Core\TempStore\TempStoreException', '\Drupal\user\TempStore /** * Stores and retrieves temporary data for a given owner. * - * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\TempStore\SharedTempStore instead. * * @see \Drupal\Core\TempStore\SharedTempStore diff --git a/core/modules/user/src/SharedTempStoreFactory.php b/core/modules/user/src/SharedTempStoreFactory.php index c955f07..0cf9137 100644 --- a/core/modules/user/src/SharedTempStoreFactory.php +++ b/core/modules/user/src/SharedTempStoreFactory.php @@ -9,7 +9,7 @@ /** * Creates a shared temporary storage for a collection. * - * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.0. + * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\TempStore\SharedTempStoreFactory instead. * * @see \Drupal\Core\TempStore\SharedTempStoreFactory diff --git a/core/modules/user/user.module b/core/modules/user/user.module index 6f46ca3..20b2bb4 100644 --- a/core/modules/user/user.module +++ b/core/modules/user/user.module @@ -29,7 +29,7 @@ * * Keep this under 191 characters so we can use a unique constraint in MySQL. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\user\UserInterface::USERNAME_MAX_LENGTH instead. * * @see https://www.drupal.org/node/2831620 @@ -39,7 +39,7 @@ /** * Only administrators can create user accounts. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\user\UserInterface::REGISTER_ADMINISTRATORS_ONLY instead. * * @see https://www.drupal.org/node/2831620 @@ -49,7 +49,7 @@ /** * Visitors can create their own accounts. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\user\UserInterface::REGISTER_VISITORS instead. * * @see https://www.drupal.org/node/2831620 @@ -60,7 +60,7 @@ * Visitors can create accounts, but they don't become active without * administrative approval. * - * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * Use \Drupal\user\UserInterface::REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL * instead. * @@ -200,7 +200,7 @@ function user_entity_extra_field_info() { * @return array * An array of user objects, indexed by uid. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\user\Entity\User::loadMultiple(). * * @see https://www.drupal.org/node/2266845 @@ -226,7 +226,7 @@ function user_load_multiple(array $uids = NULL, $reset = FALSE) { * A fully-loaded user object upon successful user load, or NULL if the user * cannot be loaded. * - * @deprecated iin Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * Drupal\user\Entity\User::load(). * * @see https://www.drupal.org/node/2266845 @@ -436,7 +436,7 @@ function user_preprocess_block(&$variables) { * @return string * An unsanitized string with the username to display. * - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. * Use \Drupal\Core\Session\AccountInterface::getDisplayName(). * * @todo Remove usage in https://www.drupal.org/node/2311219. @@ -865,7 +865,7 @@ function user_cancel_methods() { * @param int $uid * A user ID. * - * @deprecated in drupal:8.8.0 and will be removed from drupal:9.0.0. Use the user + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use the user * entity's delete method to delete the user. * @code * Drupal::entityTypeManager->getStorage('user')->load($uid)->delete(); @@ -884,7 +884,7 @@ function user_delete($uid) { * @param int[] $uids * An array of user IDs. * - * @deprecated in drupal:8.8.0 and will be removed from drupal:9.0.0. Use the + * @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use the * entity storage system to delete the users. * @code * $storage_handler = \Drupal::entityTypeManager()->getStorage('user'); @@ -923,7 +923,7 @@ function user_delete_multiple(array $uids) { * @return array * An array as expected by \Drupal\Core\Render\RendererInterface::render(). * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal::entityTypeManager()->getViewBuilder('user')->view() instead. * * @see https://www.drupal.org/node/3033656 @@ -950,7 +950,7 @@ function user_view($account, $view_mode = 'full', $langcode = NULL) { * An array in the format expected by * \Drupal\Core\Render\RendererInterface::render(). * - * @deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use * \Drupal::entityTypeManager()->getViewBuilder('user')->viewMultiple() * instead. * @@ -1132,7 +1132,7 @@ function user_roles($membersonly = FALSE, $permission = NULL) { * A fully-loaded role object if a role with the given ID exists, or NULL * otherwise. * - * @deprecated in Drupal 8.x, will be removed before Drupal 9.0. + * @deprecated in drupal:8.0 and is removed from drupal:9.0. * Use \Drupal\user\Entity\Role::load(). */ function user_role_load($rid) { diff --git a/core/modules/views/src/Entity/View.php b/core/modules/views/src/Entity/View.php index 11a0938..0810187 100644 --- a/core/modules/views/src/Entity/View.php +++ b/core/modules/views/src/Entity/View.php @@ -324,7 +324,7 @@ public function preSave(EntityStorageInterface $storage) { * @param array &$displays * An array containing display handlers of a view. * - * @deprecated in Drupal 8.3.0, will be removed in Drupal 9.0.0. + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. * * @see https://www.drupal.org/node/2831499 */ diff --git a/core/modules/views/src/Plugin/views/PluginInterface.php b/core/modules/views/src/Plugin/views/PluginInterface.php index fabbe06..ed96165 100644 --- a/core/modules/views/src/Plugin/views/PluginInterface.php +++ b/core/modules/views/src/Plugin/views/PluginInterface.php @@ -5,7 +5,7 @@ use Drupal\Component\Plugin\PluginInspectionInterface; /** - * @deprecated as of Drupal 8.3.x, will be removed in Drupal 9.0.0 + * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0 */ interface PluginInterface extends PluginInspectionInterface { diff --git a/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php b/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php index 4fe9d1e..937afdb 100644 --- a/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php +++ b/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php @@ -2150,7 +2150,7 @@ protected function applyDisplayCacheabilityMetadata(array &$element) { * @param array $element * The render array with updated cacheability metadata. * - * @deprecated in Drupal 8.4.0, will be removed before Drupal 9.0. Use + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0. Use * DisplayPluginBase::applyDisplayCacheabilityMetadata instead. * * @see \Drupal\views\Plugin\views\display\DisplayPluginBase::applyDisplayCacheabilityMetadata() diff --git a/core/modules/views/src/Tests/Handler/HandlerTestBase.php b/core/modules/views/src/Tests/Handler/HandlerTestBase.php index da4ecec..f5447f2 100644 --- a/core/modules/views/src/Tests/Handler/HandlerTestBase.php +++ b/core/modules/views/src/Tests/Handler/HandlerTestBase.php @@ -7,7 +7,7 @@ use Drupal\views\Tests\ViewTestBase; /** - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\views\Functional\ViewTestBase. */ abstract class HandlerTestBase extends ViewTestBase { diff --git a/core/modules/views/src/Tests/Plugin/PluginTestBase.php b/core/modules/views/src/Tests/Plugin/PluginTestBase.php index d8e2292..56075b3 100644 --- a/core/modules/views/src/Tests/Plugin/PluginTestBase.php +++ b/core/modules/views/src/Tests/Plugin/PluginTestBase.php @@ -7,7 +7,7 @@ use Drupal\views\Tests\ViewTestBase; /** - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\views\Functional\ViewTestBase. */ abstract class PluginTestBase extends ViewTestBase { diff --git a/core/modules/views/src/Tests/ViewKernelTestBase.php b/core/modules/views/src/Tests/ViewKernelTestBase.php index 4e1aa08..918f8b5 100644 --- a/core/modules/views/src/Tests/ViewKernelTestBase.php +++ b/core/modules/views/src/Tests/ViewKernelTestBase.php @@ -15,7 +15,7 @@ * requires the full web test environment provided by WebTestBase, extend * ViewTestBase instead. * - * @deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use + * @deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use * \Drupal\Tests\views\Kernel\ViewsKernelTestBase instead. * * @see \Drupal\Tests\views\Kernel\ViewsKernelTestBase diff --git a/core/modules/views/src/Tests/ViewTestBase.php b/core/modules/views/src/Tests/ViewTestBase.php index 1b799e1..f26ab13 100644 --- a/core/modules/views/src/Tests/ViewTestBase.php +++ b/core/modules/views/src/Tests/ViewTestBase.php @@ -16,7 +16,7 @@ * When possible, ViewsKernelTestBase should be used instead. Both base classes * include the same methods. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\views\Functional\ViewTestBase. * * @see \Drupal\Tests\views\Kernel\ViewsKernelTestBase diff --git a/core/modules/views/src/Tests/Wizard/WizardTestBase.php b/core/modules/views/src/Tests/Wizard/WizardTestBase.php index 29b96d3..c33b884 100644 --- a/core/modules/views/src/Tests/Wizard/WizardTestBase.php +++ b/core/modules/views/src/Tests/Wizard/WizardTestBase.php @@ -9,7 +9,7 @@ /** * Views UI wizard tests. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\views\Functional\Wizard\WizardTestBase. */ abstract class WizardTestBase extends ViewTestBase { diff --git a/core/modules/views_ui/src/Tests/UITestBase.php b/core/modules/views_ui/src/Tests/UITestBase.php index 4bbc4da..3bf0a43 100644 --- a/core/modules/views_ui/src/Tests/UITestBase.php +++ b/core/modules/views_ui/src/Tests/UITestBase.php @@ -9,7 +9,7 @@ /** * Provides a base class for testing the Views UI. * - * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.x. + * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. * Use \Drupal\Tests\views_ui\Functional\UITestBase. * * @see https://www.drupal.org/node/2999939 diff --git a/core/phpcs.xml.dist b/core/phpcs.xml.dist index 6fa3085..b18c878 100644 --- a/core/phpcs.xml.dist +++ b/core/phpcs.xml.dist @@ -42,6 +42,7 @@ +