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