api4 - Import CRM/, Civi/, templates/, ang/, css/, js/, xml/menu
[civicrm-core.git] / Civi / Api4 / ACL.php
CommitLineData
19b53e5b
C
1<?php
2
3namespace Civi\Api4;
4
5/**
6 * ACL Entity.
7 *
8 * This entity holds the ACL informatiom. With this entity you add/update/delete an ACL permission which consists of
9 * an Operation (e.g. 'View' or 'Edit'), a set of Data that the operation can be performed on (e.g. a group of contacts),
10 * and a Role that has permission to do this operation. For more info refer to
11 * https://docs.civicrm.org/user/en/latest/initial-set-up/permissions-and-access-control for more info.
12 *
13 * Creating a new ACL requires at minimum a entity table, entity ID and object_table
14 *
15 * @package Civi\Api4
16 */
17class ACL extends Generic\DAOEntity {
18
19}