You are here

public function LdapAuthorizationConsumerAbstract::authorizationDiff in Lightweight Directory Access Protocol (LDAP) 7.2

Same name and namespace in other branches
  1. 8.2 ldap_authorization/LdapAuthorizationConsumerAbstract.class.php \LdapAuthorizationConsumerAbstract::authorizationDiff()
1 call to LdapAuthorizationConsumerAbstract::authorizationDiff()
LdapAuthorizationConsumerOG::authorizationDiff in ldap_authorization/ldap_authorization_og/LdapAuthorizationConsumerOG.class.php
1 method overrides LdapAuthorizationConsumerAbstract::authorizationDiff()
LdapAuthorizationConsumerOG::authorizationDiff in ldap_authorization/ldap_authorization_og/LdapAuthorizationConsumerOG.class.php

File

ldap_authorization/LdapAuthorizationConsumerAbstract.class.php, line 207
Abstract class to represent an ldap_authorization consumer behavior such as drupal_role, og_group, etc. each authorization comsumer will extend this class with its own class named LdapAuthorizationConsumer<consumer type> such as…

Class

LdapAuthorizationConsumerAbstract

Code

public function authorizationDiff($initial, $current) {
  return array_diff($initial, $current);
}