You are here

public function FeedsLdapQueryFetcherResult::__construct in Lightweight Directory Access Protocol (LDAP) 8.2

Same name and namespace in other branches
  1. 7.2 ldap_feeds/FeedsLdapQueryFetcher.inc \FeedsLdapQueryFetcherResult::__construct()
  2. 7 ldap_feeds/FeedsLdapQueryFetcher.inc \FeedsLdapQueryFetcherResult::__construct()

Constructor.

File

ldap_feeds/FeedsLdapQueryFetcher.inc, line 19
FeedsLdapQueryFetcher

Class

FeedsLdapQueryFetcherResult
FeedsLdapQueryFetcherResult

Code

public function __construct($source_config) {
  $this->query_ids = isset($source_config['query_ids']) && is_array($source_config['query_ids']) ? $source_config['query_ids'] : array();
  parent::__construct('');
  $this->ldap_result = $this
    ->getRaw();
  return $this->ldap_result;
}