silence warning be defining the constants

This commit is contained in:
Ralf Becker 2013-09-02 13:40:40 +00:00
parent e2cce43bad
commit aaf0a7491d
2 changed files with 20 additions and 0 deletions

View File

@ -115,6 +115,16 @@ class accounts_ldap
*/ */
private $ldap; private $ldap;
/**
* does backend allow to change account_lid
*/
const CHANGE_ACCOUNT_LID = true;
/**
* does backend requires password to be set, before allowing to enable an account
*/
const REQUIRE_PASSWORD_FOR_ENABLE = false;
/** /**
* Constructor * Constructor
* *

View File

@ -73,6 +73,16 @@ class accounts_sql
*/ */
private $frontend; private $frontend;
/**
* does backend allow to change account_lid
*/
const CHANGE_ACCOUNT_LID = true;
/**
* does backend requires password to be set, before allowing to enable an account
*/
const REQUIRE_PASSWORD_FOR_ENABLE = false;
/** /**
* Constructor * Constructor
* *