Merge pull request #22667 from braders/avoid-notices-uf-settings-page
[civicrm-core.git] / Civi / Api4 / ACL.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11 namespace Civi\Api4;
12
13 /**
14 * ACL (Access Control List).
15 *
16 * An ACL record consists of:
17 *
18 * 1. An Operation (e.g. 'View' or 'Edit').
19 * 2. A set of Data that the operation can be performed on (e.g. a group of contacts).
20 * 3. A Role that has permission to do this operation.
21 *
22 * Creating a new ACL requires at minimum an entity table, entity ID and object_table.
23 *
24 * @searchable none
25 * @see https://docs.civicrm.org/user/en/latest/initial-set-up/permissions-and-access-control
26 * @since 5.19
27 * @package Civi\Api4
28 */
29 class ACL extends Generic\DAOEntity {
30
31 }