You are here

public function SupportTicketType::setDisplaySubmitted in Support Ticketing System 8

Sets whether 'Submitted by' information should be shown.

Parameters

bool $display_submitted: TRUE if the submitted by information should be shown.

Overrides SupportTicketTypeInterface::setDisplaySubmitted

File

modules/support_ticket/src/Entity/SupportTicketType.php, line 141
Contains \Drupal\support_ticket\Entity\SupportTicketType.

Class

SupportTicketType
Defines the SupportTicket type configuration entity.

Namespace

Drupal\support_ticket\Entity

Code

public function setDisplaySubmitted($display_submitted) {
  $this->display_submitted = $display_submitted;
}