forked from extern/egroupware
too tired to think, so dev stopped here for the night
This commit is contained in:
parent
c98e1dc9f7
commit
3d005e094e
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
$types = array('abstract','param','result','description','discussion', 'author', 'copyright', 'package');
|
$types = array('abstract','param','example','syntax','result','description','discussion','author','copyright','package','access');
|
||||||
|
|
||||||
if ($fn)
|
if ($fn)
|
||||||
{
|
{
|
||||||
@ -73,8 +73,8 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
echo '<br><pre>';
|
echo '<br><pre>';
|
||||||
// print_r($elements);
|
print_r($elements);
|
||||||
var_dump($elements);
|
// var_dump($elements);
|
||||||
echo '</pre>' . "\n";
|
echo '</pre>' . "\n";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
@ -24,15 +24,19 @@
|
|||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
@class acl
|
@class acl
|
||||||
@abstract Acces Control List Security System
|
@abstract Acces Control List Security System
|
||||||
@discussion Author: Seek3r <br>
|
@discussion This class provides an ACL security scheme.
|
||||||
This class provides an ACL security scheme. <br>
|
This can manage rights to 'run' applications, and limit certain features within an application.
|
||||||
This can manage rights to 'run' applications, and limit certain features within an application.<br>
|
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 "membership" to a group, or making a user have the security equivilance of another user.<br>
|
It is also used for granting a user or group rights to various records, such as todo or calendar items 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.<br>
|
@syntax CreateObject('phpgwapi.acl',int account_id);
|
||||||
Syntax: CreateObject('phpgwapi.acl',int account_id); <br>
|
@example $acl = CreateObject('phpgwapi.acl',5); // 5 is the user id
|
||||||
Example1: $acl = CreateObject('phpgwapi.acl',5); // 5 is the user id
|
@example $acl = CreateObject('phpgwapi.acl',10); // 10 is the user id
|
||||||
|
@author Seek3r
|
||||||
|
@copyright LGPL
|
||||||
|
@package phpgwapi
|
||||||
|
@access public
|
||||||
*/
|
*/
|
||||||
class acl
|
class acl
|
||||||
{ /*! @var $account_id */
|
{ /*! @var $account_id */
|
||||||
|
Loading…
Reference in New Issue
Block a user