diff --git a/doc/inlinedocparser.php b/doc/inlinedocparser.php index 65de27adf6..f1ff81b1c1 100755 --- a/doc/inlinedocparser.php +++ b/doc/inlinedocparser.php @@ -1,5 +1,5 @@
';
-//        print_r($elements);
-        var_dump($elements);
+        print_r($elements);
+//        var_dump($elements);
         echo '
' . "\n"; } ?> \ No newline at end of file diff --git a/phpgwapi/inc/class.acl.inc.php b/phpgwapi/inc/class.acl.inc.php index 59680df623..dc77ee42fa 100644 --- a/phpgwapi/inc/class.acl.inc.php +++ b/phpgwapi/inc/class.acl.inc.php @@ -24,15 +24,19 @@ /* $Id$ */ /*! - @class acl - @abstract Acces Control List Security System - @discussion Author: Seek3r
- 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.
- Syntax: CreateObject('phpgwapi.acl',int account_id);
- Example1: $acl = CreateObject('phpgwapi.acl',5); // 5 is the user id + @class acl + @abstract Acces Control List Security System + @discussion 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. + @syntax CreateObject('phpgwapi.acl',int account_id); + @example $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 { /*! @var $account_id */