Field
extends Meta
in package
Field class
Table of Contents
- $contextId : string
- The context ID.
- $field : array<string|int, mixed>
- The actual field.
- $key : string
- The field key.
- $postId : int
- The post ID.
- $userId : int
- The post ID.
- get() : mixed
- Get the field.
- getName() : string
- Get the field value.
- getParents() : array<string|int, mixed>
- Get all parent fields.
- getValue() : mixed
- Get an ACF field by its key or name (regardless if it is a sub field of a group field or not).
- hasParent() : bool
- Has a field a parent field? (Not a field group)
- isParent() : bool
- Is the given field related to another field?
- setContextId() : static
- Set the context ID.
- setKey() : static
- Set the field key.
- setPostId() : static
- Set the post ID.
- setUserId() : static
- Set the user ID.
- walkUp() : mixed
- Walk up the field tree and chek each parent with a custom callback.
Properties
$contextId
The context ID.
public
static string
$contextId
$field
The actual field.
public
static array<string|int, mixed>
$field
$key
The field key.
public
static string
$key
$postId
The post ID.
public
static int
$postId
$userId
The post ID.
public
static int
$userId
Methods
get()
Get the field.
public
static get([mixed $key = null ]) : mixed
Parameters
- $key : mixed = null
-
Key to any value stored in the object.
Return values
mixed —getName()
Get the field value.
public
static getName() : string
Tags
Return values
string —getParents()
Get all parent fields.
public
static getParents() : array<string|int, mixed>
Return values
array<string|int, mixed> —getValue()
Get an ACF field by its key or name (regardless if it is a sub field of a group field or not).
public
static getValue() : mixed
Return values
mixed —hasParent()
Has a field a parent field? (Not a field group)
public
static hasParent() : bool
Return values
bool —isParent()
Is the given field related to another field?
public
static isParent(string $maybeRelatedFieldKey) : bool
Parameters
- $maybeRelatedFieldKey : string
Return values
bool —setContextId()
Set the context ID.
public
static setContextId(string $contextId) : static
Parameters
- $contextId : string
-
The context ID.
Return values
static —setKey()
Set the field key.
public
static setKey(string $key) : static
Parameters
- $key : string
-
The field key.
Return values
static —setPostId()
Set the post ID.
public
static setPostId(int $postId) : static
Parameters
- $postId : int
-
The post ID.
Return values
static —setUserId()
Set the user ID.
public
static setUserId(int $userId) : static
Parameters
- $userId : int
-
The user ID.
Return values
static —walkUp()
Walk up the field tree and chek each parent with a custom callback.
public
static walkUp(callable $callback) : mixed
Parameters
- $callback : callable