mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-11 02:26:50 +01:00
Add option 'searchonly' for address books; currently used by LDAP directories
This commit is contained in:
@@ -38,6 +38,7 @@ abstract class rcube_addressbook
|
||||
public $primary_key;
|
||||
public $groups = false;
|
||||
public $readonly = true;
|
||||
public $searchonly = false;
|
||||
public $undelete = false;
|
||||
public $ready = false;
|
||||
public $group_id = null;
|
||||
|
||||
@@ -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))
|
||||
{
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
| program/include/rcube_result_set.php |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) 2006-2010, The Roundcube Dev Team |
|
||||
| Copyright (C) 2006-2011, The Roundcube Dev Team |
|
||||
| Licensed under the GNU GPL |
|
||||
| |
|
||||
| PURPOSE: |
|
||||
@@ -31,6 +31,7 @@ class rcube_result_set
|
||||
var $count = 0;
|
||||
var $first = 0;
|
||||
var $current = 0;
|
||||
var $searchonly = false;
|
||||
var $records = array();
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user