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::$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::$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::$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

Provides a confirmation form for deleting a comment type entity. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\Core\Entity\EntityForm implements EntityFormInterfaceclass \Drupal\Core\Entity\EntityConfirmFormBase implements ConfirmFormInterfaceclass \Drupal\Core\Entity\EntityDeleteForm uses E

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::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::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::$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::$label

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