X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fcomment%2Fsrc%2FEntity%2FComment.php;h=e0745d3da0e3d67b1a798ef646c49dc6aec96f43;hb=1c1cb0980bfa6caf0c24cce671b6bb541dc87583;hp=233c752c59f6bcacd327512f20f00dd895eb7e27;hpb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;p=yaffs-website diff --git a/web/core/modules/comment/src/Entity/Comment.php b/web/core/modules/comment/src/Entity/Comment.php index 233c752c5..e0745d3da 100644 --- a/web/core/modules/comment/src/Entity/Comment.php +++ b/web/core/modules/comment/src/Entity/Comment.php @@ -56,6 +56,7 @@ use Drupal\user\UserInterface; * links = { * "canonical" = "/comment/{comment}", * "delete-form" = "/comment/{comment}/delete", + * "delete-multiple-form" = "/admin/content/comment/delete", * "edit-form" = "/comment/{comment}/edit", * "create" = "/comment", * }, @@ -142,10 +143,6 @@ class Comment extends ContentEntityBase implements CommentInterface { $this->threadLock = $lock_name; } $this->setThread($thread); - if (!$this->getHostname()) { - // Ensure a client host from the current request. - $this->setHostname(\Drupal::request()->getClientIP()); - } } // The entity fields for name and mail have no meaning if the user is not // Anonymous. Set them to NULL to make it clearer that they are not used. @@ -290,7 +287,8 @@ class Comment extends ContentEntityBase implements CommentInterface { ->setLabel(t('Hostname')) ->setDescription(t("The comment author's hostname.")) ->setTranslatable(TRUE) - ->setSetting('max_length', 128); + ->setSetting('max_length', 128) + ->setDefaultValueCallback(static::class . '::getDefaultHostname'); $fields['created'] = BaseFieldDefinition::create('created') ->setLabel(t('Created')) @@ -571,4 +569,14 @@ class Comment extends ContentEntityBase implements CommentInterface { return \Drupal::currentUser()->hasPermission('skip comment approval') ? CommentInterface::PUBLISHED : CommentInterface::NOT_PUBLISHED; } + /** + * Returns the default value for entity hostname base field. + * + * @return string + * The client host name. + */ + public static function getDefaultHostname() { + return \Drupal::request()->getClientIP(); + } + }