diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-01-12 15:54:41 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-01-12 15:54:41 +0100 |
commit | 51d791d824d05a8ce0347c1c7d20a7c7d37a5fb6 (patch) | |
tree | 0c95ae518d9ab9035a47c3dfa68b686bc9f061ae /Zotlabs/Access/AccessList.php | |
parent | db08e2cea0703818b7f3515271d7603c78d1e648 (diff) | |
parent | 07b67963f128157e85c891057da2c42c286166e7 (diff) | |
download | volse-hubzilla-51d791d824d05a8ce0347c1c7d20a7c7d37a5fb6.tar.gz volse-hubzilla-51d791d824d05a8ce0347c1c7d20a7c7d37a5fb6.tar.bz2 volse-hubzilla-51d791d824d05a8ce0347c1c7d20a7c7d37a5fb6.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev
Diffstat (limited to 'Zotlabs/Access/AccessList.php')
-rw-r--r-- | Zotlabs/Access/AccessList.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Zotlabs/Access/AccessList.php b/Zotlabs/Access/AccessList.php index 6471b0b1d..7cf7b5587 100644 --- a/Zotlabs/Access/AccessList.php +++ b/Zotlabs/Access/AccessList.php @@ -3,10 +3,14 @@ namespace Zotlabs\Access; /** - * @brief AccessList class. + * @brief AccessList class which represents individual content ACLs. * * A class to hold an AccessList object with allowed and denied contacts and * groups. + * + * After evaluating @ref ::Zotlabs::Access::PermissionLimits "PermissionLimits" + * and @ref ::Zotlabs::Lib::Permcat "Permcat"s individual content ACLs are evaluated. + * These answer the question "Can Joe view *this* album/photo?". */ class AccessList { /** @@ -103,7 +107,7 @@ class AccessList { * @brief Return an array consisting of the current access list components * where the elements are directly storable. * - * @return Associative array with: + * @return array An associative array with: * * \e string \b allow_cid => string of allowed cids * * \e string \b allow_gid => string of allowed gids * * \e string \b deny_cid => string of denied cids |