CommentTypeDeleteForm::$commentManager

The comment manager service. Type: \Drupal\comment\CommentManagerInterface File core/modules/comment/src/Form/CommentTypeDeleteForm.php, line 31 Class CommentTypeDeleteForm Provides a confirmation form for deleting a comment type entity. Namespace Drupal\comment\Form Code protected $commentManager;

CommentTypeDeleteForm::$logger

A logger instance. Type: \Psr\Log\LoggerInterface File core/modules/comment/src/Form/CommentTypeDeleteForm.php, line 45 Class CommentTypeDeleteForm Provides a confirmation form for deleting a comment type entity. Namespace Drupal\comment\Form Code protected $logger;

CommentTypeDeleteForm::$entity

The entity being used by this form. Type: \Drupal\comment\CommentTypeInterface Overrides EntityForm::$entity File core/modules/comment/src/Form/CommentTypeDeleteForm.php, line 52 Class CommentTypeDeleteForm Provides a confirmation form for deleting a comment type entity. Namespace Drupal\comment\Form Code protected $entity;

CommentTypeDeleteForm::$entityManager

The entity manager service. Type: \Drupal\Core\Entity\EntityManager Overrides EntityForm::$entityManager File core/modules/comment/src/Form/CommentTypeDeleteForm.php, line 38 Class CommentTypeDeleteForm Provides a confirmation form for deleting a comment type entity. Namespace Drupal\comment\Form Code protected $entityManager;

CommentTypeDeleteForm::$queryFactory

The query factory to create entity queries. Type: \Drupal\Core\Entity\Query\QueryFactory File core/modules/comment/src/Form/CommentTypeDeleteForm.php, line 24 Class CommentTypeDeleteForm Provides a confirmation form for deleting a comment type entity. Namespace Drupal\comment\Form Code public $queryFactory;

CommentType::$target_entity_type_id

The target entity type. Type: string File core/modules/comment/src/Entity/CommentType.php, line 72 Class CommentType Defines the comment type entity. Namespace Drupal\comment\Entity Code protected $target_entity_type_id;

CommentType::getDescription

public CommentType::getDescription() Returns the comment type description. Return value string The comment-type description. Overrides CommentTypeInterface::getDescription File core/modules/comment/src/Entity/CommentType.php, line 77 Class CommentType Defines the comment type entity. Namespace Drupal\comment\Entity Code public function getDescription() { return $this->description; }

CommentType::getTargetEntityTypeId

public CommentType::getTargetEntityTypeId() Gets the target entity type id for this comment type. Return value string The target entity type id. Overrides CommentTypeInterface::getTargetEntityTypeId File core/modules/comment/src/Entity/CommentType.php, line 92 Class CommentType Defines the comment type entity. Namespace Drupal\comment\Entity Code public function getTargetEntityTypeId() { return $this->target_entity_type_id; }

CommentType::setDescription

public CommentType::setDescription($description) Sets the description of the comment type. Parameters string $description: The new description. Return value $this Overrides CommentTypeInterface::setDescription File core/modules/comment/src/Entity/CommentType.php, line 84 Class CommentType Defines the comment type entity. Namespace Drupal\comment\Entity Code public function setDescription($description) { $this->description = $description; return $this; }

CommentType::$id

The comment type ID. Type: string File core/modules/comment/src/Entity/CommentType.php, line 51 Class CommentType Defines the comment type entity. Namespace Drupal\comment\Entity Code protected $id;