mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
26 lines
867 B
PHP
26 lines
867 B
PHP
<?php
|
|
/**
|
|
* EGroupware API - Applications
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @author Dan Kuykendall <seek3r@phpgroupware.org>
|
|
* Copyright (C) 2000, 2001 Dan Kuykendall
|
|
* @license http://opensource.org/licenses/lgpl-license.php LGPL - GNU Lesser General Public License
|
|
* @package api
|
|
* @subpackage acl
|
|
* @version $Id$
|
|
*/
|
|
|
|
use EGroupware\Api;
|
|
|
|
/**
|
|
* Access Control List System
|
|
*
|
|
* This class provides an ACL security scheme.
|
|
* This can manage rights to 'run' applications, and limit certain features within an application.
|
|
* It is also used for granting a user "membership" to a group, or making a user have the security equivilance of another user.
|
|
* It is also used for granting a user or group rights to various records, such as todo or calendar items of another user.
|
|
*
|
|
* $acl = new acl(5); // 5 is the user id
|
|
*/
|
|
class acl extends Api\Acl {} |