Lines Matching defs:storageGroup
58 * @param array $storageGroup The mailbox, Exchange Storage Group, for the user account, this must be a full CN
67 public function createMailbox($username, $storageGroup, $emailAddress, $mailNickname=NULL, $useDefaults=TRUE, $baseDn=NULL, $isGUID=false)
70 if ($storageGroup === NULL) { return "Missing compulsory array [storagegroup]"; }
71 if (!is_array($storageGroup)) { return "[storagegroup] must be an array"; }
78 $container = "CN=" . implode(",CN=", $storageGroup);
376 * @param string $storageGroup The full DN of an Storage Group. You can use exchange_storage_groups() to find the DN
380 public function storageDatabases($storageGroup, $attributes = array('cn','distinguishedname','displayname')) {
382 if ($storageGroup === NULL) { return "Missing compulsory field [storageGroup]"; }
385 $sr = @ldap_search($this->adldap->getLdapConnection(), $storageGroup, $filter, $attributes);