API15

JLDAP/ construct

From Joomla! Documentation

< API15:JLDAP
Revision as of 17:14, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Constructor <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{Des...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API15" 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

[Edit Descripton]

Template:Description:JLDAP/ construct

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;
                                }
                        }
                }
        }
}

[Edit See Also] Template:SeeAlso:JLDAP/ construct

Examples[edit]

<CodeExamplesForm />