BasicReplaceAction
extends AbstractBatchAction
in package
uses
MatchParamTrait
Replaces an existing set of $ENTITIES with a new one.
This will select a group of existing $ENTITIES based on the where
parameter.
Each will be compared with the $ENTITIES passed in as records
:
- $ENTITIES in
records
that don't already exist will be created. - Existing $ENTITIES that are included in
records
will be updated. - Existing $ENTITIES that are omitted from
records
will be deleted.
Table of Contents
Properties
- $_debugOutput : mixed
- $_actionName : string
- $_entityName : string
- $chain : array<string|int, mixed>
- Additional api requests - will be called once per result.
- $checkPermissions : bool
- Whether to enforce acl permissions based on the current user.
- $debug : bool
- Add debugging info to the api result.
- $defaults : array<string|int, mixed>
- Array of default values.
- $language : string
- Preferred language (optional)
- $limit : int
- Maximum number of $ENTITIES to return.
- $match : array<string|int, mixed>
- Specify fields to match for update.
- $offset : int
- Zero-based index of first $ENTITY to return.
- $orderBy : array<string|int, mixed>
- Array of field(s) to use in ordering the results.
- $records : array<string|int, mixed>
- Array of $ENTITY records.
- $reload : bool
- Reload $ENTITIES after saving.
- $version : int
- Api version number; cannot be changed.
- $where : array<string|int, mixed>
- Criteria for selecting $ENTITIES to process.
- $_arrayStorage : array<string|int, mixed>
- $_entityFields : array<string|int, mixed>
- $_id : int
- $_paramInfo : array<string|int, mixed>
- $_reflection : ReflectionClass
Methods
- __call() : static|mixed
- Magic function to provide automatic getter/setter for params.
- __construct() : mixed
- Action constructor.
- __set() : mixed
- Strictly enforce api parameters
- _run() : mixed
- addChain() : $this
- addClause() : $this
- Adds one or more AND/OR/NOT clause groups
- addDefault() : $this
- Set default value for a field.
- addOrderBy() : $this
- Adds to the orderBy clause
- addRecord() : $this
- Add one or more records
- addWhere() : $this
- entityFields() : array<string|int, mixed>
- Returns schema fields for this entity & action.
- evaluateCondition() : bool
- This function is used internally for evaluating field annotations.
- execute() : ReplaceResult
- Invoke api call.
- getActionName() : string
- getChain() : array<string|int, mixed>
- getCheckPermissions() : bool
- getDebug() : bool
- getDefaults() : array<string|int, mixed>
- getEntityName() : string
- getLanguage() : string|null
- getLimit() : int
- getOffset() : int
- getOrderBy() : array<string|int, mixed>
- getParamInfo() : array<string|int, mixed>
- Get documentation for one or all params
- getParams() : array<string|int, mixed>
- Serialize this object's params into an array
- getPermissions() : array<string|int, mixed>
- getRecords() : array<string|int, mixed>
- getReload() : bool
- getWhere() : array<string|int, mixed>
- offsetExists() : bool
- offsetGet() : mixed
- offsetSet() : void
- offsetUnset() : void
- paramExists() : bool
- reflect() : ReflectionClass
- setChain() : $this
- setCheckPermissions() : $this
- setDebug() : $this
- setDefaults() : $this
- setLanguage() : $this
- setLimit() : $this
- setOffset() : $this
- setOrderBy() : $this
- setRecords() : $this
- setReload() : $this
- setVersion() : $this
- setWhere() : $this
- addCallbackToDebugOutput() : mixed
- When in debug mode, this logs the callback function being used by a Basic*Action class.
- checkRequiredFields() : array<string|int, mixed>
- Validates required fields for actions which create a new object.
- formatWriteValues() : mixed
- Replaces pseudoconstants in input values
- getBatchAction() : AbstractGetAction
- Get an API action object which resolves the list of records for this batch.
- getBatchRecords() : array<string|int, mixed>
- Get a list of records for this batch.
- getLanguageOptions() : array<string|int, mixed>
- Get available preferred languages.
- getMagicProperties() : array<string|int, mixed>
- Get a list of class properties for which magic methods are supported.
- getMatchFields() : array<string|int, mixed>
- Options callback for $this->match
- getParamDefaults() : array<string|int, mixed>
- getSelect() : array<string|int, string>
- Determines what fields will be returned by getBatchRecords
- matchExisting() : mixed
- Find existing record based on $this->match param
- whereClauseToString() : string
- Produces a human-readable where clause, for the reading enjoyment of you humans.
Properties
$_debugOutput
public
mixed
$_debugOutput
= []
$_actionName
protected
string
$_actionName
$_entityName
protected
string
$_entityName
$chain
Additional api requests - will be called once per result.
protected
array<string|int, mixed>
$chain
= []
Keys can be any string - this will be the name given to the output.
You can reference other values in the api results in this call by prefixing them with $
.
For example, you could create a contact and place them in a group by chaining the
GroupContact
api to the Contact
api:
Contact::create()
->setValue('first_name', 'Hello')
->addChain('add_a_group', GroupContact::create()
->setValue('contact_id', '$id')
->setValue('group_id', 123)
)
This will substitute the id of the newly created contact with $id
.
$checkPermissions
Whether to enforce acl permissions based on the current user.
protected
bool
$checkPermissions
= TRUE
Setting to FALSE will disable permission checks and override ACLs. In REST/javascript this cannot be disabled.
$debug
Add debugging info to the api result.
protected
bool
$debug
= FALSE
When enabled, $result->debug
will be populated with information about the api call,
including sql queries executed.
Note: with checkPermissions enabled, debug info will only be returned if the user has "view debug output" permission.
$defaults
Array of default values.
protected
array<string|int, mixed>
$defaults
= []
These defaults will be merged into every $ENTITY in records
before saving.
Values set in records
will override these defaults if set in both places,
but updating existing $ENTITIES will overwrite current values with these defaults.
Note: Values from the where
clause that use the =
operator are also treated as default values;
those do not need to be repeated here.
$language
Preferred language (optional)
protected
string
$language
This option will notify major localization subsystems (ts()
, multilingual, etc)
about which locale should be used for composing/formatting messaging.
This indicates the preferred language. The effective language is determined
by Civi\Core\Locale::negotiate($preferredLanguage)
.
Tags
$limit
Maximum number of $ENTITIES to return.
protected
int
$limit
= 0
Defaults to 0
- unlimited.
Note: the Api Explorer sets this to 25
by default to avoid timeouts.
Change or remove this default for your application code.
$match
Specify fields to match for update.
protected
array<string|int, mixed>
$match
= []
The API will perform an update if an existing $ENTITY matches all specified fields.
Note: the fields named in this param should be without any options suffix (e.g. my_field
not my_field:name
).
Any options suffixes in the $records will be resolved by the api prior to matching.
Tags
$offset
Zero-based index of first $ENTITY to return.
protected
int
$offset
= 0
Defaults to 0
- first $ENTITY found.
$orderBy
Array of field(s) to use in ordering the results.
protected
array<string|int, mixed>
$orderBy
= []
Defaults to id ASC
$example->addOrderBy('sort_name', 'ASC')
$records
Array of $ENTITY records.
protected
array<string|int, mixed>
$records
= []
Should be in the same format as returned by Get
.
Tags
$reload
Reload $ENTITIES after saving.
protected
bool
$reload
= FALSE
By default this action typically returns partial records containing only the fields
that were updated. Set reload
to true
to do an additional lookup after saving
to return complete values for every $ENTITY.
$version
Api version number; cannot be changed.
protected
int
$version
= 4
$where
Criteria for selecting $ENTITIES to process.
protected
array<string|int, mixed>
$where
= []
Tags
$_arrayStorage
private
array<string|int, mixed>
$_arrayStorage
= []
$_entityFields
private
array<string|int, mixed>
$_entityFields
$_id
private
int
$_id
Used to identify api calls for transactions
Tags
$_paramInfo
private
array<string|int, mixed>
$_paramInfo
$_reflection
private
ReflectionClass
$_reflection
Methods
__call()
Magic function to provide automatic getter/setter for params.
public
__call(mixed $name, mixed $arguments) : static|mixed
Parameters
- $name : mixed
- $arguments : mixed
Tags
Return values
static|mixed__construct()
Action constructor.
public
__construct(string $entityName, string $actionName) : mixed
Parameters
- $entityName : string
- $actionName : string
__set()
Strictly enforce api parameters
public
__set(mixed $name, mixed $value) : mixed
Parameters
- $name : mixed
- $value : mixed
Tags
_run()
public
_run(Result $result) : mixed
Parameters
- $result : Result
Tags
addChain()
public
addChain(string $name, AbstractAction $apiRequest[, string|int|array<string|int, mixed> $index = NULL ]) : $this
Parameters
- $name : string
-
Unique name for this chained request
- $apiRequest : AbstractAction
- $index : string|int|array<string|int, mixed> = NULL
-
See
civicrm_api4()
for documentation of$index
param
Return values
$thisaddClause()
Adds one or more AND/OR/NOT clause groups
public
addClause(string $operator, mixed $condition1) : $this
Parameters
- $operator : string
- $condition1 : mixed
-
... $conditionN Either a nested array of arguments, or a variable number of arguments passed to this function.
Tags
Return values
$thisaddDefault()
Set default value for a field.
public
addDefault(string $fieldName, mixed $defaultValue) : $this
Parameters
- $fieldName : string
- $defaultValue : mixed
Return values
$thisaddOrderBy()
Adds to the orderBy clause
public
addOrderBy(string $fieldName[, string $direction = 'ASC' ]) : $this
Parameters
- $fieldName : string
- $direction : string = 'ASC'
Return values
$thisaddRecord()
Add one or more records
public
addRecord(array<string|int, mixed> ...$records) : $this
Parameters
- $records : array<string|int, mixed>
Return values
$thisaddWhere()
public
addWhere(string $fieldName, string $op[, mixed $value = NULL ]) : $this
Parameters
- $fieldName : string
- $op : string
- $value : mixed = NULL
Tags
Return values
$thisentityFields()
Returns schema fields for this entity & action.
public
entityFields() : array<string|int, mixed>
Here we bypass the api wrapper and run the getFields action directly. This is because we DON'T want the wrapper to check permissions as this is an internal op.
Tags
Return values
array<string|int, mixed>evaluateCondition()
This function is used internally for evaluating field annotations.
public
static evaluateCondition(string $expr, array<string|int, mixed> $vars) : bool
It should never be passed raw user input.
Parameters
- $expr : string
-
Conditional in php format e.g. $foo > $bar
- $vars : array<string|int, mixed>
-
Variable name => value
Tags
Return values
boolexecute()
Invoke api call.
public
execute() : ReplaceResult
Return values
ReplaceResultgetActionName()
public
getActionName() : string
Return values
stringgetChain()
public
getChain() : array<string|int, mixed>
Return values
array<string|int, mixed>getCheckPermissions()
public
getCheckPermissions() : bool
Return values
boolgetDebug()
public
getDebug() : bool
Return values
boolgetDefaults()
public
getDefaults() : array<string|int, mixed>
Return values
array<string|int, mixed>getEntityName()
public
getEntityName() : string
Return values
stringgetLanguage()
public
getLanguage() : string|null
Return values
string|nullgetLimit()
public
getLimit() : int
Return values
intgetOffset()
public
getOffset() : int
Return values
intgetOrderBy()
public
getOrderBy() : array<string|int, mixed>
Return values
array<string|int, mixed>getParamInfo()
Get documentation for one or all params
public
getParamInfo([string $param = NULL ]) : array<string|int, mixed>
Parameters
- $param : string = NULL
Return values
array<string|int, mixed> —of arrays [description, type, default, (comment)]
getParams()
Serialize this object's params into an array
public
getParams() : array<string|int, mixed>
Return values
array<string|int, mixed>getPermissions()
public
getPermissions() : array<string|int, mixed>
Return values
array<string|int, mixed>getRecords()
public
getRecords() : array<string|int, mixed>
Return values
array<string|int, mixed>getReload()
public
getReload() : bool
Return values
boolgetWhere()
public
getWhere() : array<string|int, mixed>
Return values
array<string|int, mixed>offsetExists()
public
offsetExists(mixed $offset) : bool
Parameters
- $offset : mixed
Tags
Return values
booloffsetGet()
public
& offsetGet(mixed $offset) : mixed
Parameters
- $offset : mixed
Tags
Attributes
- #[ReturnTypeWillChange]
offsetSet()
public
offsetSet(mixed $offset, mixed $value) : void
Parameters
- $offset : mixed
- $value : mixed
Tags
offsetUnset()
public
offsetUnset(mixed $offset) : void
Parameters
- $offset : mixed
Tags
paramExists()
public
paramExists(string $param) : bool
Parameters
- $param : string
Return values
boolreflect()
public
reflect() : ReflectionClass
Return values
ReflectionClasssetChain()
public
setChain([array<string|int, mixed> $chain = ]) : $this
Parameters
- $chain : array<string|int, mixed> =
Return values
$thissetCheckPermissions()
public
setCheckPermissions(bool $checkPermissions) : $this
Parameters
- $checkPermissions : bool
Return values
$thissetDebug()
public
setDebug([bool $debug = ]) : $this
Enable/disable debug output
Parameters
- $debug : bool =
Return values
$thissetDefaults()
public
setDefaults([array<string|int, mixed> $defaults = ]) : $this
Set array of defaults.
Parameters
- $defaults : array<string|int, mixed> =
Return values
$thissetLanguage()
public
setLanguage([string|null $language = ]) : $this
Parameters
- $language : string|null =
Return values
$thissetLimit()
public
setLimit([int $limit = ]) : $this
Parameters
- $limit : int =
Return values
$thissetOffset()
public
setOffset([int $offset = ]) : $this
Parameters
- $offset : int =
Return values
$thissetOrderBy()
public
setOrderBy([array<string|int, mixed> $order = ]) : $this
Parameters
- $order : array<string|int, mixed> =
Return values
$thissetRecords()
public
setRecords([array<string|int, mixed> $records = ]) : $this
Set array of records.
Parameters
- $records : array<string|int, mixed> =
Return values
$thissetReload()
public
setReload([bool $reload = ]) : $this
Specify whether complete objects will be returned after saving.
Parameters
- $reload : bool =
Return values
$thissetVersion()
public
setVersion(int $val) : $this
Parameters
- $val : int
Tags
Return values
$thissetWhere()
public
setWhere([array<string|int, mixed> $wheres = ]) : $this
Parameters
- $wheres : array<string|int, mixed> =
Return values
$thisaddCallbackToDebugOutput()
When in debug mode, this logs the callback function being used by a Basic*Action class.
protected
addCallbackToDebugOutput(callable $callable) : mixed
Parameters
- $callable : callable
checkRequiredFields()
Validates required fields for actions which create a new object.
protected
checkRequiredFields(mixed $values) : array<string|int, mixed>
Parameters
- $values : mixed
Tags
Return values
array<string|int, mixed>formatWriteValues()
Replaces pseudoconstants in input values
protected
formatWriteValues(array<string|int, mixed> &$record) : mixed
Parameters
- $record : array<string|int, mixed>
Tags
getBatchAction()
Get an API action object which resolves the list of records for this batch.
protected
getBatchAction() : AbstractGetAction
This is similar to getBatchRecords()
, but you may further refine the
API call (e.g. selecting different fields or data-pages) before executing.
Return values
AbstractGetActiongetBatchRecords()
Get a list of records for this batch.
protected
getBatchRecords() : array<string|int, mixed>
Return values
array<string|int, mixed>getLanguageOptions()
Get available preferred languages.
protected
getLanguageOptions() : array<string|int, mixed>
Return values
array<string|int, mixed>getMagicProperties()
Get a list of class properties for which magic methods are supported.
protected
static getMagicProperties() : array<string|int, mixed>
Return values
array<string|int, mixed> —List of supported properties, keyed by property name. Array(string $propertyName => bool $true).
getMatchFields()
Options callback for $this->match
protected
getMatchFields() : array<string|int, mixed>
Return values
array<string|int, mixed>getParamDefaults()
protected
getParamDefaults() : array<string|int, mixed>
Return values
array<string|int, mixed>getSelect()
Determines what fields will be returned by getBatchRecords
protected
getSelect() : array<string|int, string>
Defaults to an entity's primary key(s), typically ['id']
Return values
array<string|int, string>matchExisting()
Find existing record based on $this->match param
protected
matchExisting(mixed &$record) : mixed
Parameters
- $record : mixed
whereClauseToString()
Produces a human-readable where clause, for the reading enjoyment of you humans.
protected
whereClauseToString([array<string|int, mixed> $whereClause = NULL ][, string $op = 'AND' ]) : string
Parameters
- $whereClause : array<string|int, mixed> = NULL
- $op : string = 'AND'