added basic PHPDoc comments
This commit is contained in:
parent
6390c15b69
commit
f8a171cf93
|
@ -36,6 +36,7 @@ $Id$
|
||||||
* @author Roland Gruber
|
* @author Roland Gruber
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/** used to print status messages */
|
||||||
include_once('status.inc');
|
include_once('status.inc');
|
||||||
|
|
||||||
// registry for the exporters
|
// registry for the exporters
|
||||||
|
|
|
@ -25,6 +25,7 @@ $Id$
|
||||||
* Classes and functions for fetching and parsing schema from an LDAP server.
|
* Classes and functions for fetching and parsing schema from an LDAP server.
|
||||||
*
|
*
|
||||||
* @package lib
|
* @package lib
|
||||||
|
*
|
||||||
* @author The phpLDAPadmin development team
|
* @author The phpLDAPadmin development team
|
||||||
* @author Roland Gruber
|
* @author Roland Gruber
|
||||||
*/
|
*/
|
||||||
|
@ -38,6 +39,8 @@ $Id$
|
||||||
* All schema items have at least two things in common: An OID
|
* All schema items have at least two things in common: An OID
|
||||||
* and a description. This class provides an implementation for
|
* and a description. This class provides an implementation for
|
||||||
* these two data.
|
* these two data.
|
||||||
|
*
|
||||||
|
* @package lib
|
||||||
*/
|
*/
|
||||||
class SchemaItem
|
class SchemaItem
|
||||||
{
|
{
|
||||||
|
@ -82,6 +85,8 @@ $Id$
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents an LDAP objectClass
|
* Represents an LDAP objectClass
|
||||||
|
*
|
||||||
|
* @package lib
|
||||||
*/
|
*/
|
||||||
class ObjectClass extends SchemaItem
|
class ObjectClass extends SchemaItem
|
||||||
{
|
{
|
||||||
|
@ -465,6 +470,8 @@ class ObjectClass extends SchemaItem
|
||||||
* a "source" objectClass, meaning that it keeps track of which objectClass originally
|
* a "source" objectClass, meaning that it keeps track of which objectClass originally
|
||||||
* specified it. This class is therefore used by the class ObjectClass to determine
|
* specified it. This class is therefore used by the class ObjectClass to determine
|
||||||
* inheritance.
|
* inheritance.
|
||||||
|
*
|
||||||
|
* @package lib
|
||||||
*/
|
*/
|
||||||
class ObjectClassAttribute
|
class ObjectClassAttribute
|
||||||
{
|
{
|
||||||
|
@ -501,6 +508,8 @@ class ObjectClass extends SchemaItem
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents an LDAP AttributeType
|
* Represents an LDAP AttributeType
|
||||||
|
*
|
||||||
|
* @package lib
|
||||||
*/
|
*/
|
||||||
class AttributeType extends SchemaItem
|
class AttributeType extends SchemaItem
|
||||||
{
|
{
|
||||||
|
@ -954,6 +963,8 @@ class AttributeType extends SchemaItem
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents an LDAP Syntax
|
* Represents an LDAP Syntax
|
||||||
|
*
|
||||||
|
* @package lib
|
||||||
*/
|
*/
|
||||||
class Syntax extends SchemaItem
|
class Syntax extends SchemaItem
|
||||||
{
|
{
|
||||||
|
@ -998,6 +1009,8 @@ class Syntax extends SchemaItem
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents an LDAP MatchingRule
|
* Represents an LDAP MatchingRule
|
||||||
|
*
|
||||||
|
* @package lib
|
||||||
*/
|
*/
|
||||||
class MatchingRule extends SchemaItem
|
class MatchingRule extends SchemaItem
|
||||||
{
|
{
|
||||||
|
@ -1134,6 +1147,8 @@ class MatchingRule extends SchemaItem
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents an LDAP schema matchingRuleUse entry
|
* Represents an LDAP schema matchingRuleUse entry
|
||||||
|
*
|
||||||
|
* @package lib
|
||||||
*/
|
*/
|
||||||
class MatchingRuleUse extends SchemaItem
|
class MatchingRuleUse extends SchemaItem
|
||||||
{
|
{
|
||||||
|
|
|
@ -19,10 +19,16 @@ $Id$
|
||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
|
||||||
LDAP Account Manager checking login datas.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Login form of LDAP Account Manager.
|
||||||
|
*
|
||||||
|
* @author Michael Duergner
|
||||||
|
* @package main
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** access to configuration options */
|
||||||
include_once("../lib/config.inc"); // Include config.inc which provides Config class
|
include_once("../lib/config.inc"); // Include config.inc which provides Config class
|
||||||
|
|
||||||
session_save_path("../sess"); // Set session save path
|
session_save_path("../sess"); // Set session save path
|
||||||
|
|
|
@ -19,12 +19,20 @@ $Id$
|
||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
This is an editor for orgnizational units.
|
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is an editor for organizational units.
|
||||||
|
*
|
||||||
|
* @author Roland Gruber
|
||||||
|
* @package tools
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** access to configuration data */
|
||||||
include_once ("../lib/config.inc");
|
include_once ("../lib/config.inc");
|
||||||
|
/** access LDAP server */
|
||||||
include_once ("../lib/ldap.inc");
|
include_once ("../lib/ldap.inc");
|
||||||
|
/** used to print status messages */
|
||||||
include_once ("../lib/status.inc");
|
include_once ("../lib/status.inc");
|
||||||
|
|
||||||
// start session
|
// start session
|
||||||
|
|
|
@ -22,14 +22,12 @@ $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* schema.php
|
* Displays the LDAP schema of the server
|
||||||
* Displays the schema for the specified server_id
|
|
||||||
*
|
*
|
||||||
* Variables that come in as GET vars:
|
* @package tools
|
||||||
* - server_id
|
* @author David Smith
|
||||||
* - view (optional: can be 'attr' or empty. If 'attr', show that attribute)
|
* @author Roland Gruber
|
||||||
* - attr (optional)
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue