class Entry extends BaseResource implements EntryInterface, CreatableInterface

Entry class.

This class represents a resource with type "Entry" in Contentful.

Traits

ArchivableTrait.
DeletableTrait.
EntryProxyExtension trait.
PublishableTrait.
UpdatableTrait.

Properties

protected Entry $sys
Client $client from UpdatableTrait
protected string $contentTypeId
protected array[] $fields

Methods

getId()

{@inheritdoc}

getType()

{@inheritdoc}

asLink()

{@inheritdoc}

mixed
asRequestBody()

Returns the resource in the form of request body.

setClient(Client $client)

Sets the current Client object instance.

archive()

Archives the current resource.

unarchive()

Unarchives the current resource.

getSystemProperties()

No description

delete()

Deletes the current resource.

getSpaceId()

{@inheritdoc}

getEnvironmentId()

{@inheritdoc}

getEntryId()

{@inheritdoc}

getSnapshot(string $snapshotId)

Returns a EntrySnapshot resource.

getSnapshots(Query $query = null)

Returns a ResourceArray object which contains EntrySnapshot resources.

publish()

Publishes the current resource.

unpublish()

Unpublishes the current resource.

update()

Updates the current resource.

__construct(string $contentTypeId)

Entry constructor.

jsonSerialize()

{@inheritdoc}

string[]
asUriParameters()

Returns an associative array where keys are the name of the fragments in a URI, and the values are the corresponding IDs.

string[]
getHeadersForCreation()

Returns an array of headers that the current resource needs to sent for being created.

mixed
getField(string $name, string $locale)

No description

getFields(string $locale = null)

No description

setField(string $name, string $locale, $value)

No description

mixed
__call(string $name, array $arguments)

Provides simple setX/getX capabilities, without recurring to code generation.

Details

in BaseResource at line 37
getId()

{@inheritdoc}

in BaseResource at line 45
getType()

{@inheritdoc}

{@inheritdoc}

in UpdatableTrait at line 35
abstract mixed asRequestBody()

Returns the resource in the form of request body.

This can differ from regular serialization, as some fields may not be present in the request payload.

Return Value

mixed

in BaseResource at line 77
BaseResource setClient(Client $client)

Sets the current Client object instance.

This is done automatically when performing API calls, so it shouldn't be used manually.

Parameters

Client $client

Return Value

BaseResource

in ArchivableTrait at line 31
archive()

Archives the current resource.

in ArchivableTrait at line 41
unarchive()

Unarchives the current resource.

at line 62
getSystemProperties()

in DeletableTrait at line 28
delete()

Deletes the current resource.

at line 103
protected getSpaceId()

{@inheritdoc}

at line 111
protected getEnvironmentId()

{@inheritdoc}

at line 119
protected getEntryId()

{@inheritdoc}

in EntryProxyExtension at line 56
getSnapshot(string $snapshotId)

Returns a EntrySnapshot resource.

Parameters

string $snapshotId

See also

https://www.contentful.com/developers/docs/references/content-management-api/#/reference/snapshots/entry-snapshot

in EntryProxyExtension at line 71
getSnapshots(Query $query = null)

Returns a ResourceArray object which contains EntrySnapshot resources.

Parameters

Query $query

See also

https://www.contentful.com/developers/docs/references/content-management-api/#/reference/snapshots/entry-snapshots-collection

in PublishableTrait at line 31
publish()

Publishes the current resource.

in PublishableTrait at line 41
unpublish()

Unpublishes the current resource.

in UpdatableTrait at line 40
update()

Updates the current resource.

at line 57
__construct(string $contentTypeId)

Entry constructor.

Parameters

string $contentTypeId

at line 70
jsonSerialize()

{@inheritdoc}

at line 91
string[] asUriParameters()

Returns an associative array where keys are the name of the fragments in a URI, and the values are the corresponding IDs.

Return Value

string[]

at line 127
string[] getHeadersForCreation()

Returns an array of headers that the current resource needs to sent for being created.

This method is supposed to be overridden if necessary.

Return Value

string[]

at line 182
mixed getField(string $name, string $locale)

Parameters

string $name
string $locale

Return Value

mixed

at line 187
getFields(string $locale = null)

Parameters

string $locale

at line 206
Entry setField(string $name, string $locale, $value)

Parameters

string $name
string $locale
$value

Return Value

Entry

at line 223
mixed __call(string $name, array $arguments)

Provides simple setX/getX capabilities, without recurring to code generation.

Parameters

string $name
array $arguments

Return Value

mixed