diff --git a/core/modules/aggregator/aggregator.module b/core/modules/aggregator/aggregator.module index 0f856e312573..86b067604bce 100644 --- a/core/modules/aggregator/aggregator.module +++ b/core/modules/aggregator/aggregator.module @@ -13,6 +13,8 @@ use Drupal\Core\Routing\RouteMatchInterface; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\aggregator\FeedStorageInterface::CLEAR_NEVER instead. + * + * @see https://www.drupal.org/node/2831620 */ const AGGREGATOR_CLEAR_NEVER = 0; diff --git a/core/modules/comment/comment.module b/core/modules/comment/comment.module index 16949ffd9e78..bb203bf64419 100644 --- a/core/modules/comment/comment.module +++ b/core/modules/comment/comment.module @@ -31,6 +31,8 @@ use Drupal\user\RoleInterface; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\comment\CommentInterface::ANONYMOUS_MAYNOT_CONTACT instead. + * + * @see https://www.drupal.org/node/2831620 */ const COMMENT_ANONYMOUS_MAYNOT_CONTACT = 0; @@ -39,6 +41,8 @@ const COMMENT_ANONYMOUS_MAYNOT_CONTACT = 0; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\comment\CommentInterface::ANONYMOUS_MAY_CONTACT instead. + * + * @see https://www.drupal.org/node/2831620 */ const COMMENT_ANONYMOUS_MAY_CONTACT = 1; @@ -47,6 +51,8 @@ const COMMENT_ANONYMOUS_MAY_CONTACT = 1; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\comment\CommentInterface::ANONYMOUS_MUST_CONTACT instead. + * + * @see https://www.drupal.org/node/2831620 */ const COMMENT_ANONYMOUS_MUST_CONTACT = 2; diff --git a/core/modules/image/image.module b/core/modules/image/image.module index 7dc1ff444e27..30358b90652c 100644 --- a/core/modules/image/image.module +++ b/core/modules/image/image.module @@ -16,6 +16,8 @@ use Drupal\image\Entity\ImageStyle; * Image style constant for user presets in the database. * * @deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.0. + * + * @see https://www.drupal.org/node/1820974 */ const IMAGE_STORAGE_NORMAL = 1; @@ -23,6 +25,8 @@ const IMAGE_STORAGE_NORMAL = 1; * 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. + * + * @see https://www.drupal.org/node/1820974 */ const IMAGE_STORAGE_OVERRIDE = 2; @@ -30,6 +34,8 @@ const IMAGE_STORAGE_OVERRIDE = 2; * Image style constant for module-defined presets in code. * * @deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.0. + * + * @see https://www.drupal.org/node/1820974 */ const IMAGE_STORAGE_DEFAULT = 4; @@ -37,6 +43,8 @@ const IMAGE_STORAGE_DEFAULT = 4; * Image style constant to represent an editable preset. * * @deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.0. + * + * @see https://www.drupal.org/node/1820974 */ define('IMAGE_STORAGE_EDITABLE', IMAGE_STORAGE_NORMAL | IMAGE_STORAGE_OVERRIDE); @@ -44,6 +52,8 @@ define('IMAGE_STORAGE_EDITABLE', IMAGE_STORAGE_NORMAL | IMAGE_STORAGE_OVERRIDE); * Image style constant to represent any module-based preset. * * @deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.0. + * + * @see https://www.drupal.org/node/1820974 */ define('IMAGE_STORAGE_MODULE', IMAGE_STORAGE_OVERRIDE | IMAGE_STORAGE_DEFAULT); diff --git a/core/modules/menu_ui/menu_ui.module b/core/modules/menu_ui/menu_ui.module index e46d97152aa6..cb1e85307f5c 100644 --- a/core/modules/menu_ui/menu_ui.module +++ b/core/modules/menu_ui/menu_ui.module @@ -26,6 +26,8 @@ use Drupal\node\NodeInterface; * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. Use * \Drupal\Core\Config\Entity\ConfigEntityStorage::MAX_ID_LENGTH because the * menu name is a configuration entity ID. + * + * @see https://www.drupal.org/node/2831620 */ const MENU_MAX_MENU_NAME_LENGTH_UI = 27; diff --git a/core/modules/node/node.module b/core/modules/node/node.module index 4e76edddd2f5..b8eb7e64c754 100644 --- a/core/modules/node/node.module +++ b/core/modules/node/node.module @@ -34,6 +34,8 @@ use Drupal\node\NodeTypeInterface; * * @deprecated Scheduled for removal in Drupal 9.0.x. * Use \Drupal\node\NodeInterface::NOT_PUBLISHED instead. + * + * @see https://www.drupal.org/node/2316145 */ const NODE_NOT_PUBLISHED = 0; @@ -42,6 +44,8 @@ const NODE_NOT_PUBLISHED = 0; * * @deprecated Scheduled for removal in Drupal 9.0.x. * Use \Drupal\node\NodeInterface::PUBLISHED instead. + * + * @see https://www.drupal.org/node/2316145 */ const NODE_PUBLISHED = 1; @@ -50,6 +54,8 @@ const NODE_PUBLISHED = 1; * * @deprecated Scheduled for removal in Drupal 9.0.x. * Use \Drupal\node\NodeInterface::NOT_PROMOTED instead. + * + * @see https://www.drupal.org/node/2316145 */ const NODE_NOT_PROMOTED = 0; @@ -58,6 +64,8 @@ const NODE_NOT_PROMOTED = 0; * * @deprecated Scheduled for removal in Drupal 9.0.x. * Use \Drupal\node\NodeInterface::PROMOTED instead. + * + * @see https://www.drupal.org/node/2316145 */ const NODE_PROMOTED = 1; @@ -66,6 +74,8 @@ const NODE_PROMOTED = 1; * * @deprecated Scheduled for removal in Drupal 9.0.x. * Use \Drupal\node\NodeInterface::NOT_STICKY instead. + * + * @see https://www.drupal.org/node/2316145 */ const NODE_NOT_STICKY = 0; @@ -74,6 +84,8 @@ const NODE_NOT_STICKY = 0; * * @deprecated Scheduled for removal in Drupal 9.0.x. * Use \Drupal\node\NodeInterface::STICKY instead. + * + * @see https://www.drupal.org/node/2316145 */ const NODE_STICKY = 1; diff --git a/core/modules/responsive_image/responsive_image.module b/core/modules/responsive_image/responsive_image.module index abfb96b780c3..54dc56c8f7a8 100644 --- a/core/modules/responsive_image/responsive_image.module +++ b/core/modules/responsive_image/responsive_image.module @@ -20,6 +20,8 @@ use Drupal\breakpoint\BreakpointInterface; * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. Use * Drupal\responsive_image\ResponsiveImageStyleInterface::EMPTY_IMAGE * instead. + * + * @see https://www.drupal.org/node/2831620 */ const RESPONSIVE_IMAGE_EMPTY_IMAGE = '_empty image_'; @@ -29,6 +31,8 @@ const RESPONSIVE_IMAGE_EMPTY_IMAGE = '_empty image_'; * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. Use * \Drupal\responsive_image\ResponsiveImageStyleInterface::ORIGINAL_IMAGE * instead. + * + * @see https://www.drupal.org/node/2831620 */ const RESPONSIVE_IMAGE_ORIGINAL_IMAGE = '_original image_'; diff --git a/core/modules/system/system.module b/core/modules/system/system.module index a9ca4c3dd812..7860237c3bb6 100644 --- a/core/modules/system/system.module +++ b/core/modules/system/system.module @@ -33,6 +33,8 @@ use GuzzleHttp\Exception\RequestException; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\user\UserInterface::TIMEZONE_DEFAULT instead. + * + * @see https://www.drupal.org/node/2831620 */ const DRUPAL_USER_TIMEZONE_DEFAULT = 0; @@ -41,6 +43,8 @@ const DRUPAL_USER_TIMEZONE_DEFAULT = 0; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\user\UserInterface::TIMEZONE_EMPTY instead. + * + * @see https://www.drupal.org/node/2831620 */ const DRUPAL_USER_TIMEZONE_EMPTY = 1; @@ -49,6 +53,8 @@ const DRUPAL_USER_TIMEZONE_EMPTY = 1; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\user\UserInterface::TIMEZONE_SELECT instead. + * + * @see https://www.drupal.org/node/2831620 */ const DRUPAL_USER_TIMEZONE_SELECT = 2; @@ -74,6 +80,7 @@ const DRUPAL_REQUIRED = 2; * Use \Drupal\block\BlockRepositoryInterface::REGIONS_VISIBLE instead. * * @see system_region_list() + * @see https://www.drupal.org/node/2831620 */ const REGIONS_VISIBLE = 'visible'; @@ -84,6 +91,7 @@ const REGIONS_VISIBLE = 'visible'; * Use \Drupal\block\BlockRepositoryInterface::REGIONS_ALL instead. * * @see system_region_list() + * @see https://www.drupal.org/node/2831620 */ const REGIONS_ALL = 'all'; diff --git a/core/modules/taxonomy/taxonomy.module b/core/modules/taxonomy/taxonomy.module index c6dd721aa72b..be8532a2df4a 100644 --- a/core/modules/taxonomy/taxonomy.module +++ b/core/modules/taxonomy/taxonomy.module @@ -22,6 +22,8 @@ use Drupal\taxonomy\VocabularyInterface; * * @deprecated in Drupal 8.2.x and will be removed before 9.0.0. Use * \Drupal\taxonomy\VocabularyInterface::HIERARCHY_DISABLED instead. + * + * @see https://www.drupal.org/node/2807795 */ const TAXONOMY_HIERARCHY_DISABLED = 0; @@ -30,6 +32,8 @@ const TAXONOMY_HIERARCHY_DISABLED = 0; * * @deprecated in Drupal 8.2.x and will be removed before 9.0.0. Use * \Drupal\taxonomy\VocabularyInterface::HIERARCHY_SINGLE instead. + * + * @see https://www.drupal.org/node/2807795 */ const TAXONOMY_HIERARCHY_SINGLE = 1; @@ -38,6 +42,8 @@ const TAXONOMY_HIERARCHY_SINGLE = 1; * * @deprecated in Drupal 8.2.x and will be removed before 9.0.0. Use * \Drupal\taxonomy\VocabularyInterface::HIERARCHY_MULTIPLE instead. + * + * @see https://www.drupal.org/node/2807795 */ const TAXONOMY_HIERARCHY_MULTIPLE = 2; diff --git a/core/modules/update/update.module b/core/modules/update/update.module index 385434a230fd..0545aef8b9ae 100644 --- a/core/modules/update/update.module +++ b/core/modules/update/update.module @@ -23,6 +23,8 @@ use Drupal\Core\Site\Settings; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\update\UpdateManagerInterface::NOT_SECURE instead. + * + * @see https://www.drupal.org/node/2831620 */ const UPDATE_NOT_SECURE = 1; @@ -31,6 +33,8 @@ const UPDATE_NOT_SECURE = 1; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\update\UpdateManagerInterface::REVOKED instead. + * + * @see https://www.drupal.org/node/2831620 */ const UPDATE_REVOKED = 2; @@ -39,6 +43,8 @@ const UPDATE_REVOKED = 2; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\update\UpdateManagerInterface::NOT_SUPPORTED instead. + * + * @see https://www.drupal.org/node/2831620 */ const UPDATE_NOT_SUPPORTED = 3; @@ -47,6 +53,8 @@ const UPDATE_NOT_SUPPORTED = 3; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\update\UpdateManagerInterface::NOT_CURRENT instead. + * + * @see https://www.drupal.org/node/2831620 */ const UPDATE_NOT_CURRENT = 4; @@ -55,6 +63,8 @@ const UPDATE_NOT_CURRENT = 4; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\update\UpdateManagerInterface::CURRENT instead. + * + * @see https://www.drupal.org/node/2831620 */ const UPDATE_CURRENT = 5; @@ -63,6 +73,8 @@ const UPDATE_CURRENT = 5; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\update\UpdateFetcherInterface::NOT_CHECKED instead. + * + * @see https://www.drupal.org/node/2831620 */ const UPDATE_NOT_CHECKED = -1; @@ -71,6 +83,8 @@ const UPDATE_NOT_CHECKED = -1; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\update\UpdateFetcherInterface::UNKNOWN instead. + * + * @see https://www.drupal.org/node/2831620 */ const UPDATE_UNKNOWN = -2; @@ -79,6 +93,8 @@ const UPDATE_UNKNOWN = -2; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\update\UpdateFetcherInterface::NOT_FETCHED instead. + * + * @see https://www.drupal.org/node/2831620 */ const UPDATE_NOT_FETCHED = -3; @@ -87,6 +103,8 @@ const UPDATE_NOT_FETCHED = -3; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\update\UpdateFetcherInterface::FETCH_PENDING instead. + * + * @see https://www.drupal.org/node/2831620 */ const UPDATE_FETCH_PENDING = -4; diff --git a/core/modules/user/user.module b/core/modules/user/user.module index 19b9527a21dd..2d7d24a00638 100644 --- a/core/modules/user/user.module +++ b/core/modules/user/user.module @@ -31,6 +31,8 @@ use Drupal\user\UserInterface; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\user\UserInterface::USERNAME_MAX_LENGTH instead. + * + * @see https://www.drupal.org/node/2831620 */ const USERNAME_MAX_LENGTH = 60; @@ -39,6 +41,8 @@ const USERNAME_MAX_LENGTH = 60; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\user\UserInterface::REGISTER_ADMINISTRATORS_ONLY instead. + * + * @see https://www.drupal.org/node/2831620 */ const USER_REGISTER_ADMINISTRATORS_ONLY = 'admin_only'; @@ -47,6 +51,8 @@ const USER_REGISTER_ADMINISTRATORS_ONLY = 'admin_only'; * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\user\UserInterface::REGISTER_VISITORS instead. + * + * @see https://www.drupal.org/node/2831620 */ const USER_REGISTER_VISITORS = 'visitors'; @@ -57,6 +63,8 @@ const USER_REGISTER_VISITORS = 'visitors'; * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. * Use \Drupal\user\UserInterface::REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL * instead. + * + * @see https://www.drupal.org/node/2831620 */ const USER_REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL = 'visitors_admin_approval';