You are here

public function SamlauthUserSyncEvent::isAccountChanged in SAML Authentication 4.x

Same name and namespace in other branches
  1. 8.3 src/Event/SamlauthUserSyncEvent.php \Drupal\samlauth\Event\SamlauthUserSyncEvent::isAccountChanged()
  2. 8.2 src/Event/SamlauthUserSyncEvent.php \Drupal\samlauth\Event\SamlauthUserSyncEvent::isAccountChanged()

Indicates if the user account was marked as changed.

This is typically done afterwards by the code that dispatches this.

Return value

bool TRUE if the user account was marked as changed.

File

src/Event/SamlauthUserSyncEvent.php, line 153

Class

SamlauthUserSyncEvent
Wraps a samlauth user sync event for event listeners.

Namespace

Drupal\samlauth\Event

Code

public function isAccountChanged() {
  return $this->accountChanged;
}