re-added the account-search-types lost in the rewrite of the accounts-class

This commit is contained in:
Ralf Becker 2006-10-28 09:32:56 +00:00
parent 3dcbd0ae30
commit 66abd0c259

View File

@ -110,6 +110,20 @@ class accounts extends accounts_backend
var $depricated_names = array('firstname','lastname','fullname','email','type',
'status','expires','lastlogin','lastloginfrom','lastpasswd_change');
/**
* Querytypes for the account-search
*
* @var array
*/
var $query_types = array(
'all' => 'all fields',
'firstname' => 'firstname',
'lastname' => 'lastname',
'lid' => 'LoginID',
'email' => 'email',
'start' => 'start with',
'exact' => 'exact',
);
/**
* Constructor
*