public function Mapping::hasProvisioningEvent in Lightweight Directory Access Protocol (LDAP) 8.4
Provisioning event available?
Parameters
string $event: Event.
Return value
bool Available.
File
- ldap_servers/
src/ Mapping.php, line 239
Class
- Mapping
- Interface for the synchronization mappings ldap_user provides.
Namespace
Drupal\ldap_serversCode
public function hasProvisioningEvent(string $event) : bool {
return in_array($event, $this->provisioningEvents, TRUE);
}