JLDAP/1.5
From Joomla! Documentation
< JLDAP(Difference between revisions)
(Layout updates) |
m (→See also: fixing link to API) |
||
| Line 107: | Line 107: | ||
<source lang="php">jimport( 'joomla.client.ldap' );</source> | <source lang="php">jimport( 'joomla.client.ldap' );</source> | ||
===See also=== | ===See also=== | ||
| − | * {{JVer|1.5}} '''JLDAP''' on [http://api.joomla.org/Joomla-Framework/Client/JLDAP.html api.joomla.org] | + | * {{JVer|1.5}} '''JLDAP''' on [http://api.joomla.org/1.5/Joomla-Framework/Client/JLDAP.html api.joomla.org] |
* {{JVer|1.5}} '''JLDAP source code''' on [[jframework15:client/ldap.php|JoomlaCode]] | * {{JVer|1.5}} '''JLDAP source code''' on [[jframework15:client/ldap.php|JoomlaCode]] | ||
* {{JVer|1.5}} Subpackage [[Subpackage Client/1.5|Client]] | * {{JVer|1.5}} Subpackage [[Subpackage Client/1.5|Client]] | ||
Latest revision as of 16:04, 13 February 2013
[edit]
JLDAP
[edit] Description
Description:JLDAP [Edit Descripton]
[edit] Methods
| Visibility | Method name | Description |
|---|---|---|
| public | __construct | Constructor. |
| public | add | Add an attribute to the given DN Note: DN has to exist already. |
| public | anonymous_bind | Anonymously Binds to LDAP Directory. |
| public | bind | Binds to the LDAP directory. |
| public | close | Close the connection public. |
| public | compare | Compare an entry and return a true or false result. |
| public | connect | Connect to server. |
| public | create | Create a new DN. |
| public | delete | Deletes a given DN from the tree. |
| public | generatePassword | Generates a LDAP compatible password. |
| public | getDN | |
| public | getErrorMsg | Returns the error message. |
| public | ipToNetAddress | Converts a dot notation IP address to net address (e.g. |
| public | LDAPNetAddr | extract readable network address from the LDAP encoded networkAddress attribute. |
| public | modify | Modifies an entry and return a true or false result. |
| public | read | Read all or specified attributes of given dn. |
| public | remove | Removes attribute value from given dn and return a true or false result. |
| public | rename | Rename the entry. |
| public | replace | Replace an entry and return a true or false result. |
| public | search | Perform an LDAP search. |
| public | setDN | Sets the DN with some template replacements. |
| public | simple_search | Perform an LDAP search using comma seperated search strings. |
- Defined in libraries/joomla/client/ldap.php
- Extends JObject
[edit] Importing
jimport( 'joomla.client.ldap' );
[edit] See also
-
JLDAP on api.joomla.org
-
JLDAP source code on JoomlaCode
-
Subpackage Client
- Other versions of JLDAP
[edit] User contributed notes
<CodeExamplesForm />