new type API
This commit is contained in:
parent
2ce3618ca9
commit
6022dee5a0
|
@ -33,15 +33,15 @@
|
|||
|
||||
|
||||
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-15"><title>Upgrade notes</title>
|
||||
|
||||
|
||||
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-15"><title>Upgrade notes</title>
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="style/layout.css">
|
||||
|
||||
|
||||
|
||||
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico"></head><body>
|
||||
<h1>Upgrade notes</h1>
|
||||
|
||||
|
@ -50,6 +50,11 @@ This is a list of API changes for all LAM releases.
|
|||
|
||||
<br>
|
||||
|
||||
<h2>5.7 -> 5.8</h2>
|
||||
<ul>
|
||||
<li>All account types allow multiple configurations by default.</li>
|
||||
</ul>
|
||||
<br>
|
||||
<h2>5.6 -> 5.7</h2>
|
||||
<ul>
|
||||
<li>module interface: get_pdfEntries() must return an array key =>
|
||||
|
|
|
@ -705,11 +705,8 @@ function searchLDAPByFilter($filter, $attributes, $scopes, $attrsOnly = false) {
|
|||
$readAttributesOnly = 1;
|
||||
}
|
||||
$typeManager = new \LAM\TYPES\TypeManager();
|
||||
$types = $typeManager->getConfiguredTypes();
|
||||
$types = $typeManager->getConfiguredTypesForScopes($scopes);
|
||||
foreach ($types as $type) {
|
||||
if (!in_array($type->getScope(), $scopes)) {
|
||||
continue;
|
||||
}
|
||||
// search LDAP
|
||||
$entries = searchLDAPPaged($_SESSION['ldap']->server(), escapeDN($type->getSuffix()),
|
||||
$filter, $attributes, $readAttributesOnly, $_SESSION['config']->get_searchLimit());
|
||||
|
|
|
@ -1105,15 +1105,15 @@ class LAMConfig {
|
|||
/**
|
||||
* Returns the LDAP suffix for the given account type
|
||||
*
|
||||
* @param string $scope account type
|
||||
* @param string $typeId account type
|
||||
* @return string the LDAP suffix
|
||||
*/
|
||||
public function get_Suffix($scope) {
|
||||
if ($scope == "tree") {
|
||||
public function get_Suffix($typeId) {
|
||||
if ($typeId == "tree") {
|
||||
return $this->treesuffix;
|
||||
}
|
||||
else {
|
||||
return $this->typeSettings['suffix_' . $scope];
|
||||
return $this->typeSettings['suffix_' . $typeId];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -268,7 +268,8 @@ class ConfiguredType {
|
|||
if ($this->additionalLdapFilter !== null) {
|
||||
return $this->additionalLdapFilter;
|
||||
}
|
||||
$this->additionalLdapFilter = $this->typeManager->getConfig()->get_Suffix($typeId);
|
||||
$typeSettings = $this->typeManager->getConfig()->get_typeSettings();
|
||||
$this->additionalLdapFilter = isset($typeSettings['filter_' . $this->id]) ? $typeSettings['filter_' . $this->id] : '';
|
||||
return $this->additionalLdapFilter;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue