use public/private instead of var
This commit is contained in:
parent
39e739bd86
commit
80f8e2ad31
|
@ -42,11 +42,11 @@ include_once('ldap.inc');
|
||||||
class cache {
|
class cache {
|
||||||
|
|
||||||
/** This variable contains the cache */
|
/** This variable contains the cache */
|
||||||
var $ldapcache;
|
private $ldapcache;
|
||||||
/** This variable contains a list and their scope of attributes which should be cached */
|
/** This variable contains a list and their scope of attributes which should be cached */
|
||||||
var $attributes;
|
private $attributes;
|
||||||
/** This is the last timestamp on which the LDAP cache has been refreshed */
|
/** This is the last timestamp on which the LDAP cache has been refreshed */
|
||||||
var $time;
|
private $time;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
|
|
|
@ -255,37 +255,37 @@ function checkSelfServiceSettings($scope, $options) {
|
||||||
class selfServiceProfile {
|
class selfServiceProfile {
|
||||||
|
|
||||||
/** server address */
|
/** server address */
|
||||||
var $serverURL;
|
public $serverURL;
|
||||||
|
|
||||||
/** LDAP suffix */
|
/** LDAP suffix */
|
||||||
var $LDAPSuffix;
|
public $LDAPSuffix;
|
||||||
|
|
||||||
/** LDAP user DN*/
|
/** LDAP user DN*/
|
||||||
var $LDAPUser;
|
public $LDAPUser;
|
||||||
|
|
||||||
/** LDAP password */
|
/** LDAP password */
|
||||||
var $LDAPPassword;
|
public $LDAPPassword;
|
||||||
|
|
||||||
/** LDAP search attribute */
|
/** LDAP search attribute */
|
||||||
var $searchAttribute;
|
public $searchAttribute;
|
||||||
|
|
||||||
/** describing text for user login */
|
/** describing text for user login */
|
||||||
var $loginCaption;
|
public $loginCaption;
|
||||||
|
|
||||||
/** describing text for search attribute */
|
/** describing text for search attribute */
|
||||||
var $loginAttributeText;
|
public $loginAttributeText;
|
||||||
|
|
||||||
/** describing text for self service main page */
|
/** describing text for self service main page */
|
||||||
var $mainPageText;
|
public $mainPageText;
|
||||||
|
|
||||||
/** input fields
|
/** input fields
|
||||||
* Format: array(<module> => array(array('name' => <group name>, 'fields' => array(<field1>, <field2>))))
|
* Format: array(<module> => array(array('name' => <group name>, 'fields' => array(<field1>, <field2>))))
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
var $inputFields;
|
public $inputFields;
|
||||||
|
|
||||||
/** configuration settings of modules */
|
/** configuration settings of modules */
|
||||||
var $moduleSettings;
|
public $moduleSettings;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
|
|
Loading…
Reference in New Issue