summaryrefslogtreecommitdiff
path: root/www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/Civi/Api4/ACL.php
blob: 754a0499b8251c221b6aff72e7bed151b0dfd3a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

namespace Civi\Api4;

/**
 * ACL Entity.
 *
 * This entity holds the ACL informatiom. With this entity you add/update/delete an ACL permission which consists of
 * an Operation (e.g. 'View' or 'Edit'), a set of Data that the operation can be performed on (e.g. a group of contacts),
 * and a Role that has permission to do this operation. For more info refer to
 * https://docs.civicrm.org/user/en/latest/initial-set-up/permissions-and-access-control for more info.
 *
 * Creating a new ACL requires at minimum a entity table, entity ID and object_table
 *
 * @package Civi\Api4
 */
class ACL extends Generic\DAOEntity {

}