Organization
extends Contact
in package
Contacts of type Organization.
This api is a facade for the Contact entity. In most ways it acts exactly like the Contact entity, plus it injects [contact_type => Organization] into get, create, and batch actions (however, when updating or deleting a single Contact by id, this will transparently pass-through to the Contact entity, so don't rely on this facade to enforce contact type for single-record-by-id write operations).
Tags
Table of Contents
Methods
- __callStatic() : AbstractAction
- Magic method to return the action object for an api.
- autocomplete() : AutocompleteAction
- checkAccess() : CheckAccessAction
- create() : Create
- delete() : Delete
- get() : DAOGetAction
- getActions() : GetActions
- getChecksum() : GetChecksum
- getDuplicates() : GetDuplicates
- getEntityName() : string
- Get entity name from called class
- getFields() : DAOGetFieldsAction
- getInfo() : array{name: string, title: string, description: string, title_plural: string, type: string, paths: array, class: string, primary_key: array, searchable: string, dao: string, label_field: string, icon: string}
- Reflection function called by Entity::get()
- getLinks() : GetLinks
- mergeDuplicates() : MergeDuplicates
- permissions() : array<string|int, mixed>
- Returns a list of permissions needed to access the various actions in this api.
- replace() : BasicReplaceAction
- save() : Save
- update() : Update
- validateChecksum() : ValidateChecksum
- getDaoName() : CRM_Core_DAO|string|null
- getEntityTitle() : string
- Overridable function to return a localized title for this entity.
Methods
__callStatic()
Magic method to return the action object for an api.
public
static __callStatic(string $action, array<string|int, mixed> $args) : AbstractAction
Parameters
- $action : string
- $args : array<string|int, mixed>
Tags
Return values
AbstractActionautocomplete()
public
static autocomplete([bool $checkPermissions = TRUE ]) : AutocompleteAction
Parameters
- $checkPermissions : bool = TRUE
Return values
AutocompleteActioncheckAccess()
public
static checkAccess() : CheckAccessAction
Return values
CheckAccessActioncreate()
public
static create([bool $checkPermissions = TRUE ]) : Create
Parameters
- $checkPermissions : bool = TRUE
Return values
Createdelete()
public
static delete([bool $checkPermissions = TRUE ]) : Delete
Parameters
- $checkPermissions : bool = TRUE
Return values
Deleteget()
public
static get([bool $checkPermissions = TRUE ]) : DAOGetAction
Parameters
- $checkPermissions : bool = TRUE
Return values
DAOGetActiongetActions()
public
static getActions([bool $checkPermissions = TRUE ]) : GetActions
Parameters
- $checkPermissions : bool = TRUE
Return values
GetActionsgetChecksum()
public
static getChecksum([bool $checkPermissions = TRUE ]) : GetChecksum
Parameters
- $checkPermissions : bool = TRUE
Return values
GetChecksumgetDuplicates()
public
static getDuplicates([bool $checkPermissions = TRUE ]) : GetDuplicates
Parameters
- $checkPermissions : bool = TRUE
Return values
GetDuplicatesgetEntityName()
Get entity name from called class
public
static getEntityName() : string
Return values
stringgetFields()
public
static getFields([bool $checkPermissions = TRUE ]) : DAOGetFieldsAction
Parameters
- $checkPermissions : bool = TRUE
Return values
DAOGetFieldsActiongetInfo()
Reflection function called by Entity::get()
public
static getInfo() : array{name: string, title: string, description: string, title_plural: string, type: string, paths: array, class: string, primary_key: array, searchable: string, dao: string, label_field: string, icon: string}
Tags
Return values
array{name: string, title: string, description: string, title_plural: string, type: string, paths: array, class: string, primary_key: array, searchable: string, dao: string, label_field: string, icon: string}getLinks()
public
static getLinks([bool $checkPermissions = TRUE ]) : GetLinks
Parameters
- $checkPermissions : bool = TRUE
Return values
GetLinksmergeDuplicates()
public
static mergeDuplicates([bool $checkPermissions = TRUE ]) : MergeDuplicates
Parameters
- $checkPermissions : bool = TRUE
Return values
MergeDuplicatespermissions()
Returns a list of permissions needed to access the various actions in this api.
public
static permissions() : array<string|int, mixed>
Tags
Return values
array<string|int, mixed>replace()
public
static replace([bool $checkPermissions = TRUE ]) : BasicReplaceAction
Parameters
- $checkPermissions : bool = TRUE
Return values
BasicReplaceActionsave()
public
static save([bool $checkPermissions = TRUE ]) : Save
Parameters
- $checkPermissions : bool = TRUE
Return values
Saveupdate()
public
static update([bool $checkPermissions = TRUE ]) : Update
Parameters
- $checkPermissions : bool = TRUE
Return values
UpdatevalidateChecksum()
public
static validateChecksum([bool $checkPermissions = TRUE ]) : ValidateChecksum
Parameters
- $checkPermissions : bool = TRUE
Return values
ValidateChecksumgetDaoName()
protected
static getDaoName() : CRM_Core_DAO|string|null
Return values
CRM_Core_DAO|string|nullgetEntityTitle()
Overridable function to return a localized title for this entity.
protected
static getEntityTitle([bool $plural = FALSE ]) : string
Parameters
- $plural : bool = FALSE
-
Whether to return a plural title.