diff options
author | thomascube <thomas@roundcube.net> | 2011-09-21 11:17:46 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-09-21 11:17:46 +0000 |
commit | 2d3e2bc56108fc014edfaa154237b551daea4cc0 (patch) | |
tree | 26430c969e5879944c3fc92609cd6d0ff3e41174 /program/include/rcube_ldap.php | |
parent | c054ec5c7a859aa15243f0b1cbd3e84239ed4023 (diff) |
Add option 'searchonly' for address books; currently used by LDAP directories
Diffstat (limited to 'program/include/rcube_ldap.php')
-rw-r--r-- | program/include/rcube_ldap.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/program/include/rcube_ldap.php b/program/include/rcube_ldap.php index c6ca88e5e..13e7b5448 100644 --- a/program/include/rcube_ldap.php +++ b/program/include/rcube_ldap.php @@ -71,6 +71,9 @@ class rcube_ldap extends rcube_addressbook function __construct($p, $debug=false, $mail_domain=NULL) { $this->prop = $p; + + if (isset($p['searchonly'])) + $this->searchonly = $p['searchonly']; // check if groups are configured if (is_array($p['groups']) && count($p['groups'])) { @@ -429,6 +432,12 @@ class rcube_ldap extends rcube_addressbook */ function list_records($cols=null, $subset=0) { + if ($this->prop['searchonly'] && empty($this->filter) && !$this->group_id) { + $this->result = new rcube_result_set(0); + $this->result->searchonly = true; + return $this->result; + } + // add general filter to query if (!empty($this->prop['filter']) && empty($this->filter)) { |