Method |
Description |
|
deleteObjectState ( integer $stateId ) |
Deletes object state identified by $stateId. |
|
deleteObjectStateGroup ( mixed $groupId ) |
Deletes the object state group identified by $groupId. |
|
deleteObjectStateLinks ( integer $stateId ) |
Deletes object state links identified by $stateId. |
|
getContentCount ( mixed $stateId ) : integer |
Returns the number of objects which are in this state. |
|
insertObjectState ( eZ\Publish\SPI\Persistence\Content\ObjectState $objectState, integer $groupId ) |
Inserts a new object state into database. |
|
insertObjectStateGroup ( eZ\Publish\SPI\Persistence\Content\ObjectState\Group $objectStateGroup ) |
Inserts a new object state group into database. |
|
loadObjectStateData ( mixed $stateId ) : array |
Loads data for an object state. |
|
loadObjectStateDataByIdentifier ( string $identifier, mixed $groupId ) : array |
Loads data for an object state by identifier. |
|
loadObjectStateDataForContent ( integer $contentId, integer $stateGroupId ) : array |
Loads object state data for $contentId content from $stateGroupId state group. |
|
loadObjectStateGroupData ( mixed $groupId ) : array |
Loads data for an object state group. |
|
loadObjectStateGroupDataByIdentifier ( string $identifier ) : array |
Loads data for an object state group by identifier. |
|
loadObjectStateGroupListData ( integer $offset, integer $limit ) : array |
Loads data for all object state groups, filtered by $offset and $limit. |
|
loadObjectStateListData ( mixed $groupId ) : array |
Loads data for all object states belonging to group with $groupId ID. |
|
setContentState ( mixed $contentId, mixed $groupId, mixed $stateId ) |
Sets the object state $stateId to content with $contentId ID. |
|
updateObjectState ( eZ\Publish\SPI\Persistence\Content\ObjectState $objectState ) |
Updates the stored object state with provided data. |
|
updateObjectStateGroup ( eZ\Publish\SPI\Persistence\Content\ObjectState\Group $objectStateGroup ) |
Updates the stored object state group with provided data. |
|
updateObjectStateLinks ( integer $oldStateId, integer $newStateId ) |
Update object state links from $oldStateId to $newStateId. |
|
updateObjectStatePriority ( mixed $stateId, integer $priority ) |
Updates the object state priority to provided value. |
|