egroupware_official/phpgwapi/inc/class.acl.inc.php

26 lines
867 B
PHP
Raw Normal View History

<?php
2008-03-21 12:49:28 +01:00
/**
2016-03-31 20:52:09 +02:00
* EGroupware API - Applications
*
2008-03-21 12:49:28 +01:00
* @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
2016-03-31 20:52:09 +02:00
* @subpackage acl
2008-03-21 12:49:28 +01:00
* @version $Id$
*/
2016-03-31 20:52:09 +02:00
use EGroupware\Api;
2008-03-21 12:49:28 +01:00
/**
* 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.
2014-03-28 08:49:49 +01:00
*
* $acl = new acl(5); // 5 is the user id
2008-03-21 12:49:28 +01:00
*/
2016-03-31 20:52:09 +02:00
class acl extends Api\Acl {}