API16

JLDAP/ construct

From Joomla! Documentation

< API16:JLDAP

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Constructor


<! removed transcluded page call, red link never existed >

Syntax[edit]

__construct($configObj=null)
Parameter Name Default Value Description
$configObj null An object of configuration variables public

Defined in[edit]

libraries/joomla/client/ldap.php

Importing[edit]

jimport( 'joomla.client.ldap' );

Source Body[edit]

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[edit]

Code Examples[edit]