API16:JLDAP/ construct
From Joomla! Documentation
Description
Constructor
<! removed transcluded page call, red link never existed >
Syntax
__construct($configObj=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $configObj | null | An object of configuration variables public |
Defined in
libraries/joomla/client/ldap.php
Importing
jimport( 'joomla.client.ldap' );
Source Body
function __construct($configObj = null)
{
if (is_object($configObj))
{
$vars = get_class_vars(get_class($this));
foreach (array_keys($vars) as $var)
{
if (substr($var, 0, 1) != '_') {
if ($param = $configObj->get($var)) {
$this-> $var = $param;
}
}
}
}
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples