You are here

public function Message::getContactForm in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/contact/src/Entity/Message.php \Drupal\contact\Entity\Message::getContactForm()

Returns the form this contact message belongs to.

Return value

\Drupal\contact\ContactFormInterface The contact form entity.

Overrides MessageInterface::getContactForm

File

core/modules/contact/src/Entity/Message.php, line 51
Contains \Drupal\contact\Entity\Message.

Class

Message
Defines the contact message entity.

Namespace

Drupal\contact\Entity

Code

public function getContactForm() {
  return $this
    ->get('contact_form')->entity;
}