PHP Class Horde_Group_Sql, horde

Copyright 1999-2015 Horde LLC (http://www.horde.org/) See the enclosed file COPYING for license information (LGPL). If you did not receive this file, see http://www.horde.org/licenses/lgpl21.
Author: Duck ([email protected])
Author: Jan Schneider ([email protected])
Inheritance: extends Horde_Group_Base
Datei anzeigen Open project: horde/horde

Protected Properties

Property Type Description
$_db Horde_Db_Adapter Handle for the current database connection.

Public Methods

Method Description
__construct ( $params ) Constructor.
readOnly ( ) : boolean Returns whether the group backend is read-only.

Protected Methods

Method Description
_addUser ( mixed $gid, string $user ) Add a user to a group.
_create ( string $name, string $email = null ) : mixed Creates a new group.
_exists ( mixed $gid ) : boolean Checks if a group exists.
_getData ( mixed $gid ) : array Returns all available attributes of a group.
_getName ( mixed $gid ) : string Returns a group name.
_listAll ( ) : array Returns a list of all groups a user may see, with IDs as keys and names as values.
_listGroups ( string $user ) : array Returns a list of groups a user belongs to.
_listUsers ( mixed $gid ) : array Returns a list of users in a group.
_remove ( mixed $gid ) Removes a group.
_removeUser ( mixed $gid, string $user ) Removes a user from a group.
_rename ( mixed $gid, string $name ) Renames a group.
_search ( string $name ) : array Searches for group names.
_setData ( mixed $gid, array | string $attribute, string $value = null ) Sets one or more attributes of a group.

Method Details

__construct() public method

Constructor.
public __construct ( $params )

_addUser() protected method

Add a user to a group.
protected _addUser ( mixed $gid, string $user )
$gid mixed A group ID.
$user string A user name.

_create() protected method

Creates a new group.
protected _create ( string $name, string $email = null ) : mixed
$name string A group name.
$email string The group's email address.
return mixed The ID of the created group.

_exists() protected method

Checks if a group exists.
protected _exists ( mixed $gid ) : boolean
$gid mixed A group ID.
return boolean True if the group exists.

_getData() protected method

Returns all available attributes of a group.
protected _getData ( mixed $gid ) : array
$gid mixed A group ID.
return array The group's date.

_getName() protected method

Returns a group name.
protected _getName ( mixed $gid ) : string
$gid mixed A group ID.
return string The group's name.

_listAll() protected method

Returns a list of all groups a user may see, with IDs as keys and names as values.
protected _listAll ( ) : array
return array All existing groups.

_listGroups() protected method

Returns a list of groups a user belongs to.
protected _listGroups ( string $user ) : array
$user string A user name.
return array A list of groups, with IDs as keys and names as values.

_listUsers() protected method

Returns a list of users in a group.
protected _listUsers ( mixed $gid ) : array
$gid mixed A group ID.
return array List of group users.

_remove() protected method

Removes a group.
protected _remove ( mixed $gid )
$gid mixed A group ID.

_removeUser() protected method

Removes a user from a group.
protected _removeUser ( mixed $gid, string $user )
$gid mixed A group ID.
$user string A user name.

_rename() protected method

Renames a group.
protected _rename ( mixed $gid, string $name )
$gid mixed A group ID.
$name string The new name.

_setData() protected method

Sets one or more attributes of a group.
protected _setData ( mixed $gid, array | string $attribute, string $value = null )
$gid mixed A group ID.
$attribute array | string An attribute name or a hash of attributes.
$value string An attribute value if $attribute is a string.

readOnly() public method

Returns whether the group backend is read-only.
public readOnly ( ) : boolean
return boolean

Property Details

$_db protected_oe property

Handle for the current database connection.
protected Horde_Db_Adapter $_db
return Horde_Db_Adapter