Merge pull request #20416 from colemanw/afformTabFix
[civicrm-core.git] / Civi / Api4 / GroupContact.php
CommitLineData
19b53e5b
C
1<?php
2
380f3545
TO
3/*
4 +--------------------------------------------------------------------+
41498ac5 5 | Copyright CiviCRM LLC. All rights reserved. |
380f3545 6 | |
41498ac5
TO
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 |
380f3545
TO
10 +--------------------------------------------------------------------+
11 */
12
13/**
14 *
15 * @package CRM
ca5cec67 16 * @copyright CiviCRM LLC https://civicrm.org/licensing
380f3545
TO
17 */
18
19b53e5b
C
19namespace Civi\Api4;
20
21/**
22 * GroupContact entity - link between groups and contacts.
23 *
24 * A contact can either be "Added" "Removed" or "Pending" in a group.
25 * CiviCRM only considers them to be "in" a group if their status is "Added".
26 *
c5368b3b 27 * @bridge group_id contact_id
0493ec47 28 * @see \Civi\Api4\Group
c5368b3b 29 * @searchable false
19b53e5b
C
30 * @package Civi\Api4
31 */
465bc32a
CW
32class GroupContact extends Generic\DAOEntity {
33 use Generic\Traits\EntityBridge;
19b53e5b
C
34
35 /**
6764a9d3 36 * @param bool $checkPermissions
19b53e5b
C
37 * @return Action\GroupContact\Create
38 */
6764a9d3
CW
39 public static function create($checkPermissions = TRUE) {
40 return (new Action\GroupContact\Create(__CLASS__, __FUNCTION__))
41 ->setCheckPermissions($checkPermissions);
19b53e5b
C
42 }
43
44 /**
6764a9d3 45 * @param bool $checkPermissions
19b53e5b
C
46 * @return Action\GroupContact\Save
47 */
6764a9d3
CW
48 public static function save($checkPermissions = TRUE) {
49 return (new Action\GroupContact\Save(__CLASS__, __FUNCTION__))
50 ->setCheckPermissions($checkPermissions);
19b53e5b
C
51 }
52
53 /**
6764a9d3 54 * @param bool $checkPermissions
19b53e5b
C
55 * @return Action\GroupContact\Update
56 */
6764a9d3
CW
57 public static function update($checkPermissions = TRUE) {
58 return (new Action\GroupContact\Update(__CLASS__, __FUNCTION__))
59 ->setCheckPermissions($checkPermissions);
19b53e5b
C
60 }
61
62}