use public/private instead of var

This commit is contained in:
Roland Gruber 2007-10-15 17:20:51 +00:00
parent 39e739bd86
commit 80f8e2ad31
2 changed files with 13 additions and 13 deletions

View File

@ -42,11 +42,11 @@ include_once('ldap.inc');
class cache {
/** This variable contains the cache */
var $ldapcache;
private $ldapcache;
/** 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 */
var $time;
private $time;
/**
* Constructor.

View File

@ -255,37 +255,37 @@ function checkSelfServiceSettings($scope, $options) {
class selfServiceProfile {
/** server address */
var $serverURL;
public $serverURL;
/** LDAP suffix */
var $LDAPSuffix;
public $LDAPSuffix;
/** LDAP user DN*/
var $LDAPUser;
public $LDAPUser;
/** LDAP password */
var $LDAPPassword;
public $LDAPPassword;
/** LDAP search attribute */
var $searchAttribute;
public $searchAttribute;
/** describing text for user login */
var $loginCaption;
public $loginCaption;
/** describing text for search attribute */
var $loginAttributeText;
public $loginAttributeText;
/** describing text for self service main page */
var $mainPageText;
public $mainPageText;
/** input fields
* Format: array(<module> => array(array('name' => <group name>, 'fields' => array(<field1>, <field2>))))
*
*/
var $inputFields;
public $inputFields;
/** configuration settings of modules */
var $moduleSettings;
public $moduleSettings;
/**
* Constructor