You are here

public function ProfileType::getRegistration in Profile 8

Gets whether a profile of this type should be created during registration.

Return value

bool TRUE a profile of this type should be created during registration, FALSE otherwise.

Overrides ProfileTypeInterface::getRegistration

1 call to ProfileType::getRegistration()
ProfileType::postSave in src/Entity/ProfileType.php
Acts on a saved entity before the insert or update hook is invoked.

File

src/Entity/ProfileType.php, line 155

Class

ProfileType
Defines the profile type entity class.

Namespace

Drupal\profile\Entity

Code

public function getRegistration() {
  return $this->registration;
}