You are here

public function LoginDestination::isEnabled in Login Destination 8.2

Same name and namespace in other branches
  1. 8 src/Entity/LoginDestination.php \Drupal\login_destination\Entity\LoginDestination::isEnabled()

Return status.

Return value

bool TRUE for enabled, FALSE otherwise.

Overrides LoginDestinationInterface::isEnabled

File

src/Entity/LoginDestination.php, line 373

Class

LoginDestination
Defines a login destination configuration entity.

Namespace

Drupal\login_destination\Entity

Code

public function isEnabled() {
  return $this->enabled;
}